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

RevLine 
[3553]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">
[3689]5        <head>   
6                <title>{website_title} - {lang_login}</title>
[3553]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" />
[3731]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>
[3553]20        </head>
21       
[3689]22        <body>         
[3553]23                <div class="topo">
24                <h1>{website_title} - {lang_login}</h1>
25                </div>
26
[3731]27                {message_box}           
[3553]28               
[3731]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="">
[3689]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/>
[3992]36                                        <input name="login" id="login" value="alexandrecorreia"/><br/>
[3689]37                                        <strong>{lang_password}:</strong><br/>
38                                        <input name="passwd" type="password" autocomplete=off/><br/>
[3731]39                                        <button name="submitit" class="btn-contexto" style="margin-top:5px" type="submit">{lang_login}</button>
40                                </div>
[3689]41                        </dt>
42                </form>
[3731]43
[3553]44                <div class="rodape">Projeto ExpressoLivre 2004 - 2010 :: Licen&ccedil;a de Software</div>
[3689]45        </body>
[454]46</html>
[3731]47
48<script type="text/javascript">
49        document.getElementById('login').focus();
50</script>
51
[3553]52<!-- END page -->
53<!-- BEGIN success_message -->
54<div class="bg-neutro">
55        <div class="aviso-positivo">
[3571]56                <strong>{message}</strong>
[3553]57        </div>
58</div>
59<!-- END success_message -->
60<!-- BEGIN error_message -->
61<div class="bg-neutro">
62        <div class="aviso-negativo">
[3571]63                <strong>{message}</strong>
[3553]64        </div>
65</div>
66<!-- END error_message -->
Note: See TracBrowser for help on using the repository browser.