source: trunk/help/templates/azul/suggestions.tpl @ 1100

Revision 1100, 1.3 KB checked in by niltonneto, 15 years ago (diff)

Ticket #475 - Preparação do link Sugestões para usar vários templates.

  • Property svn:executable set to *
Line 
1<html>
2<head>
3<title>{title_suggestions}</title>
4                <script language="Javascript">
5                function send() {
6                        if(document.doit.body.value ==""){
7                                alert('Não existe nenhum texto digitado.');
8                                return false;
9                        }
10                        document.doit.submit();
11                }
12                </script>               
13<link rel='stylesheet' type='text/css' href='./templates/{template_set}/css/index.css'/>
14</head>
15<body style="margin:0px;padding:0px;">
16<table width='100%'>
17<tr><td align='left' background="./templates/{template_set}/images/fundo_topo.jpg">
18<img src="./templates/{template_set}/images/topo.jpg" style="overflow:hidden;z-index:-1;">
19<span class='titulo'>{lang_suggestions}</span>
20</td></tr></table>
21<div align='center'>
22<p align="center">
23<font face="Arial" size="2"><b>{txt_desc}</font></p>
24<form name="doit" action="enviasugestao.php" method="POST">
25<textarea name="body" cols="40" rows="15" wrap></textarea>
26<input type="hidden" name="to" value="{sugg_mailto}">
27<input type="hidden" name="cc" value="{sugg_mailcc}">
28<input type="hidden" name="bcc" value="{sugg_mailbcc}">
29<input type="hidden" name="subject" value="{txt_subject}">
30<br>
31<br>
32<input type="button" name="bt_send" value="{txt_send}" onClick="javascript:send()">
33&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
34<input type="button" name="bt_cancel" value="{txt_cancel}" onClick="javascript:window.close()">
35</form>
36</div>
37</body>
38</html>
Note: See TracBrowser for help on using the repository browser.