source: branches/2.2.0.1/mobile/templates/default/login.tpl @ 3992

Revision 3992, 2.1 KB checked in by rafaelraymundo, 13 years ago (diff)

Ticket #1726 - Ajustes para fontes, evitando quebra de linha. r3990

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                <link href="templates/css/mobile.css" type="text/css" rel="StyleSheet" />
10
11                <script type="text/javascript">
12
13                        function validate_login() {
14                                document.getElementById("max_resolution").value = ((screen.width >= screen.height) ? screen.width : screen.height);
15                               
16                                return true;
17                        }
18
19                </script>
20        </head>
21       
22        <body>         
23                <div class="topo">
24                <h1>{website_title} - {lang_login}</h1>
25                </div>
26
27                {message_box}           
28               
29                <form name="form_login" method="post" action="./login.php" id="login_form" onSubmit="return validate_login()">
30                        <input type="hidden" name="max_resolution" id="max_resolution" value="">
31                        <input type="hidden" name="passwd_type" value="text">
32                        <input type="hidden" name="account type" value="u">
33                        <dt id="lista_miolo">
34                                <div class="login">
35                                        <strong>{lang_username}:</strong><br/>
36                                        <input name="login" id="login" value="alexandrecorreia"/><br/>
37                                        <strong>{lang_password}:</strong><br/>
38                                        <input name="passwd" type="password" autocomplete=off/><br/>
39                                        <button name="submitit" class="btn-contexto" style="margin-top:5px" type="submit">{lang_login}</button>
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
48<script type="text/javascript">
49        document.getElementById('login').focus();
50</script>
51
52<!-- END page -->
53<!-- BEGIN success_message -->
54<div class="bg-neutro">
55        <div class="aviso-positivo">
56                <strong>{message}</strong>
57        </div>
58</div>
59<!-- END success_message -->
60<!-- BEGIN error_message -->
61<div class="bg-neutro">
62        <div class="aviso-negativo">
63                <strong>{message}</strong>
64        </div>
65</div>
66<!-- END error_message -->
Note: See TracBrowser for help on using the repository browser.