Project

General

Profile

1
<!-- BEGIN mainBlock -->
2
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
4
<!--
5
 @version         $Id: login.htt 77 2017-03-12 02:46:29Z Luisehahne $
6
-->
7
<head>
8
<title>{TEXT_LOGIN}</title>
9
<meta http-equiv="content-type" content="text/html; charset={CHARSET}" />
10
<meta http-equiv="content-language" content="{LANGUAGE}" />
11
<meta name="description" content="{TEXT_LOGIN}" />
12
<meta name="keywords" content="{TEXT_LOGIN}" />
13
<link href="{THEME_URL}/theme.css" rel="stylesheet" type="text/css" />
14
</head>
15
<body onload="document.login.{USERNAME_FIELDNAME}.focus();">
16

    
17
<table summary="" cellpadding="0" cellspacing="0" border="0" width="770" align="center">
18
<tr>
19
    <td width="60" valign="top">
20
        <img src="{THEME_URL}/images/logo.png" alt="Logo" />
21
    </td>
22
    <td width="5">&nbsp;</td>
23
    <td>&nbsp;</td>
24
</tr>
25
<tr>
26
    <td colspan="3">&nbsp;</td>
27
</tr>
28
<tr>
29
    <td colspan="3" style="font-size: 20px; text-align: center; ">
30
        <span style="color: #003366;">{SECTION_LOGIN}</span>
31
    </td>
32
</tr>
33
</table>
34

    
35
<table summary="" cellpadding="0" cellspacing="0" border="0" width="770" align="center" style="margin-top: 30px;" class="container">
36
<tr>
37
    <td class="content">
38
    <form name="login" action="{ACTION_URL}" method="post">
39
    <input type="hidden" name="url" value="{URL}" />
40
    <input type="hidden" name="username_fieldname" value="{USERNAME_FIELDNAME}" />
41
    <input type="hidden" name="password_fieldname" value="{PASSWORD_FIELDNAME}" />
42
        <table summary="" cellpadding="5" cellspacing="0" border="0" align="center" width="500">
43
        <tr>
44
            <td height="40" align="center" colspan="2">{MESSAGE}</td>
45
        </tr>
46
        <tr>
47
            <td height="10" colspan="2"></td>
48
        </tr>
49
        <tr>
50
            <td width="170" height="30" align="right">{TEXT_USERNAME}:</td>
51
            <td><input type="text" maxlength="{MAX_USERNAME_LEN}" name="{USERNAME_FIELDNAME}" value="{USERNAME}" style="width: 180px;" /></td>
52
        </tr>
53
        <tr>
54
            <td width="170" height="30" align="right">{TEXT_PASSWORD}:</td>
55
            <td><input type="password" maxlength="{MAX_PASSWORD_LEN}" name="{PASSWORD_FIELDNAME}" style="width: 180px;" /></td>
56
        </tr>
57
        <tr style="{DISPLAY_REMEMBER_ME}">
58
            <td>&nbsp;</td>
59
            <td>
60
                <input type="checkbox" name="remember" id="remember" value="true" />
61
                <label for="remember">
62
                    {TEXT_REMEMBER_ME}
63
                </label>
64
            </td>
65
        </tr>
66
        <tr>
67
            <td>&nbsp;</td>
68
            <td><input type="submit" name="submit" value="{TEXT_LOGIN}" style="width: 180px; font-size: 10px; text-transform: uppercase; color: #003366; border: 1px solid #336699; background-color: #DDDDDD; padding: 3px;" /></td>
69
        </tr>
70
        <tr>
71
            <td height="10" colspan="2"></td>
72
        </tr>
73
        </table>
74
    </form>
75

    
76
    <center>
77
        <a href="{FORGOTTEN_DETAILS_APP}">{TEXT_FORGOTTEN_DETAILS}</a>
78
        <br />
79
        <br />
80
        <br />
81
        <a target="_blank" href="{WB_URL}/">{TEXT_HOME}</a>
82
    </center>
83

    
84
    </td>
85
</tr>
86
</table>
87

    
88
<table summary="" cellpadding="0" cellspacing="0" border="0" width="100%" style="padding: 10px 0px 10px 0px;">
89
<tr>
90
    <td style="font-size:12px;text-align:center;">
91
      <!-- Please note: the below reference to the GNU GPL should not be removed, as it provides a link for users to read about warranty, etc. -->
92
      <a href="http://www.websitebaker2.org/" title="external">WebsiteBaker</a> is released under the
93
      <a href="http://www.gnu.org/licenses/gpl.html" title="WebsiteBaker is released under the GNU General Public License">GNU General Public License</a>
94
      <!-- Please note: the above reference to the GNU GPL should not be removed, as it provides a link for users to read about warranty, etc. -->
95
    </td>
96
</tr>
97
</table>
98
<script type="text/javascript">
99
<!--
100
    elm = document.getElementsByTagName('form');
101
    console.info(elm);
102
      for (i=0; elm[i]; i++) {
103
        if ( (elm[i].className.indexOf('autocomplete') == -1) ) {
104
            elm[i].setAttribute('autocomplete', 'off');
105
        }
106
        if ( (elm[i].className.indexOf('accept-charset') == -1) ) {
107
            elm[i].setAttribute('accept-charset', 'utf-8');
108
        }
109
      }
110
-->
111
</script>
112
</body>
113
</html>
114
<!-- END mainBlock -->
(12-12/32)