source: branches/2.0/phpgwapi/templates/default/login.tpl @ 1863

Revision 1863, 4.2 KB checked in by niltonneto, 14 years ago (diff)

Ticket #830 - Corrigido problema de exibição do link Ajuda no login.

  • Property svn:eol-style set to native
  • Property svn:executable set to *
Line 
1<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
2<HTML>
3<!-- BEGIN login_form -->
4<HEAD>
5<META http-equiv="Content-Type" content="text/html; charset={charset}">
6<META name="AUTHOR" content="dGroupWare http://www.eGroupWare.org">
7<META NAME="description" CONTENT="{website_title} login screen, working environment powered by eGroupWare">
8<META NAME="ROBOTS" CONTENT="NOINDEX, NOFOLLOW">
9<META NAME="keywords" CONTENT="{website_title} login screen, eGroupWare, groupware, groupware suite">
10<link href="phpgwapi/templates/default/login.css" rel="stylesheet" type="text/css">
11<TITLE>{website_title} - {lang_login}</TITLE>
12<script language="Javascript">
13<!--
14
15        function setLogin(){
16                if( document.flogin.organization != null)
17                        document.flogin.login.value = document.flogin.organization.value+'-'+document.flogin.user.value;
18                else
19                        document.flogin.login.value = document.flogin.user.value;                       
20        }
21       
22        function getLogin(){
23                var cookie = '{cookie}';
24                if( document.flogin.organization != null)
25                        document.flogin.user.value= cookie.substring(cookie.indexOf('-')+1,cookie.length);
26                else   
27                        document.flogin.user.value= cookie;
28
29                if(document.flogin.user.value == '') {
30                        if(document.flogin.organization != null)
31                                document.flogin.organization.focus();
32                        else
33                                document.flogin.user.focus();
34                }
35                else
36                        document.flogin.passwd.focus();
37        }
38       
39        function openWindow(newWidth,newHeight,link) {                                 
40                newScreenX  = screen.width - newWidth; 
41                newScreenY  = 0;               
42                Window1=window.open(link,'',"width="+newWidth+",height="+newHeight+",screenX="+newScreenX+",left="+newScreenX+",screenY="+newScreenY+",top="+newScreenY+",toolbar=no,scrollbars=yes,resizable=no");                             
43        }       
44        -->
45</script>
46</HEAD>
47<body scroll="no"  style="overflow:hidden" onLoad="javascript:getLogin()" bgcolor="#ffffff">
48<div id="conteudo">
49<div style="position: absolute; top:0px; right: 10px;"><span class="login_label">{lang_language}&nbsp;&nbsp;</span>{select_language}</div>
50<div align="center">
51        <div id="conteudo_corpo">
52                <div id="superior">
53                <div id="login">
54      <div align="center">
55<form name="flogin" method="post" action="{login_url}" {autocomplete}>
56<input type="hidden" name="passwd_type" value="text">
57<input type="hidden" name="account type" value="u">
58<input type="hidden" name="login">
59<div id="caixa_login">
60          <div id="reflexo">
61           <div class="titulo_login">Expresso Livre</div>
62           <div id="mensagem" class="msgInicial" >{cd}<br>{lang_message}</div>
63           {action}
64            <div id="conteudo_login" style="display:{show};">{select_organization}
65              <div class="login_label">
66                <label for="usuario">{lang_username}</label>
67                <br />
68                <input class="input" type="text" maxlength="50" size="20" name="user" id="user" value="">
69              </div>
70
71              <div class="login_label">
72                <label for="senha">{lang_password}</label>
73                <br />
74                <input class="input" type="password" maxlength="50" size="20" name="passwd" id="passwd" value="">
75              </div>
76                {captcha}
77     
78              <input value="{lang_login}" name="submitit" class="button" onclick="javascript:setLogin()" type="submit" style="margin-top:10px"/>
79            </div>
80<div style="margin-top:5px">
81 {link_alterna_login}
82</div>
83          </div>
84          <div id="rodape_login">
85                <div class="ajuda" style="display:{display_help}"><img align='center' src="./phpgwapi/templates/{template}/images/help.png"/><a title="{lang_help}" target="help" href="./help.php?lang={lang}">{lang_help}</a></div>
86          </div>
87        </div>
88</form>
89</div>
90</div>
91</div>
92<div id="inferior"><br />
93<div id="rodape">
94<table align="center" cellspacing="0" cellpadding="0" border="0">
95        <tr>
96                <td>
97                        <table border="0" cellpadding="0" cellspacing="0" width="300px">
98                        <tbody>
99                                <tr>
100                                <td>{logo_config}
101                                <br><a title="Projeto Expresso Livre" target="_blank" href="http://www.expressolivre.org/">Expresso Livre</a> {version}
102                                <br><a title="eGroupWare" target="_blank" href="http://www.egroupware.org/"> Powered by eGroupWare </a></div></td>
103                                </tr>
104                        </tbody>
105                </table>
106        </td>
107        </tr>
108</table>
109</div>
110</div>
111</div>
112</div>
113</div>
114<div>{applet}</div>
115</body></html>
Note: See TracBrowser for help on using the repository browser.