source: trunk/help/templates/default/suggestions.tpl @ 1251

Revision 1251, 1.1 KB checked in by niltonneto, 15 years ago (diff)

Ticket #475 - Adição dos templates novos classic e default.

  • 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<br>
27<br>
28<input type="button" name="bt_send" value="{txt_send}" onClick="javascript:send()">
29&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
30<input type="button" name="bt_cancel" value="{txt_cancel}" onClick="javascript:window.close()">
31</form>
32</div>
33</body>
34</html>
Note: See TracBrowser for help on using the repository browser.