source: branches/2.2/mobile/templates/default/login.tpl @ 3714

Revision 3714, 1.6 KB checked in by eduardoalex, 13 years ago (diff)

Ticket #1461 - Retirado avisos na tela de login. Os mesmos estavam fixos.

Line 
1<!-- BEGIN page -->
2<!DOCTYPE html PUBLIC "-//WAPFORUM//DTD XHTML Mobile 1.0//EN" "http://www.wapforum.org/DTD/xhtml-mobile10.dtd">
3
4<html xmlns="http://www.w3.org/1999/xhtml">
5        <head>   
6                <title>{website_title} - {lang_login}</title>
7                <meta content="text/html;width=device-width; initial-scale=1.0; maximum-scale=1.0; user-scalable=0; charset=utf-8;" http-equiv="Content-Type" name="viewport" />
8                <meta name="format-detection" content="telephone=no" />
9                {css}
10        </head>
11       
12        <body>         
13                <div class="topo">
14                <h1>{website_title} - {lang_login}</h1>
15                </div>
16
17                {message_box}
18               
19               
20                <form name="form_login" method="post" action="./login.php">
21                        <input type="hidden" name="passwd_type" value="text">
22                        <input type="hidden" name="account type" value="u">
23                        <dt id="lista_miolo">
24                                <div class="login">
25                                        <strong>{lang_username}:</strong><br/>
26                                        <input name="login"/><br/>
27                                        <script>document.form_login.login.focus();</script>
28                                        <strong>{lang_password}:</strong><br/>
29                                        <input name="passwd" type="password" autocomplete=off/><br/>
30                                        <button name="submitit" class="btn-contexto" style="margin-top:5px">{lang_login}</button>
31                                </div>                         
32                        </dt>
33                </form>
34       
35                <div class="rodape">Projeto ExpressoLivre 2004 - 2010 :: Licen&ccedil;a de Software</div>
36        </body>
37</html>
38<!-- END page -->
39<!-- BEGIN success_message -->
40<div class="bg-neutro">
41        <div class="aviso-positivo">
42                <strong>{message}</strong>
43        </div>
44</div>
45<!-- END success_message -->
46<!-- BEGIN error_message -->
47<div class="bg-neutro">
48        <div class="aviso-negativo">
49                <strong>{message}</strong>
50        </div>
51</div>
52<!-- END error_message -->
Note: See TracBrowser for help on using the repository browser.