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

Revision 3689, 1.8 KB checked in by eduardoalex, 13 years ago (diff)

Ticket #1405 - Corrigido o layout da tela de login do expresso mini

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                               
33        <div id="bg-aviso">
34                <div class="aviso-positivo">
35                                                <div class="margin-geral">
36                                                        <strong>Bem vindo ao novo Expresso Mini!</strong>
37                                                        <p>Navegue e aprecie.</p>
38                                                </div>
39                                        </div>
40                                </div>                         
41                        </dt>
42                </form>
43       
44                <div class="rodape">Projeto ExpressoLivre 2004 - 2010 :: Licen&ccedil;a de Software</div>
45        </body>
46</html>
47<!-- END page -->
48<!-- BEGIN success_message -->
49<div class="bg-neutro">
50        <div class="aviso-positivo">
51                <strong>{message}</strong>
52        </div>
53</div>
54<!-- END success_message -->
55<!-- BEGIN error_message -->
56<div class="bg-neutro">
57        <div class="aviso-negativo">
58                <strong>{message}</strong>
59        </div>
60</div>
61<!-- END error_message -->
Note: See TracBrowser for help on using the repository browser.