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
<head>
5
<title>{TEXT_LOGIN}</title>
6
<meta http-equiv="content-type" content="text/html; charset={CHARSET}" />
7
<link href="{THEME_URL}/theme.css" rel="stylesheet" type="text/css" />
8
</head>
9
<body onload="document.login.{USERNAME_FIELDNAME}.focus();">
10
<div style="text-align:left;font-size:20px;color:#fff;padding:15px 0 0 50px;height:100px;">
11
	<!-- <img src="{THEME_URL}/images/logo.png" alt="Logo" /> -->
12
	{TEXT_LOGIN}
13
</div> 
14
<table cellpadding="0" cellspacing="0" border="0" width="770" align="center" style="margin-top: 30px;">
15
  <tr>
16
    <td class="content">
17
      <form name="login" action="{ACTION_URL}" method="post">
18
        <input type="hidden" name="url" value="{URL}" />
19
        <input type="hidden" name="username_fieldname" value="{USERNAME_FIELDNAME}" />
20
        <input type="hidden" name="password_fieldname" value="{PASSWORD_FIELDNAME}" />
21
        <table cellpadding="5" cellspacing="0" border="0" align="center" width="500">
22
          <tr>
23
            <td height="40" align="center" colspan="2">{MESSAGE}</td>
24
          </tr>
25
          <tr>
26
            <td height="10" colspan="2"></td>
27
          </tr>
28
          <tr>
29
            <td width="170" height="30" align="right">{TEXT_USERNAME}:</td>
30
            <td>
31
              <input type="text" maxlength="{MAX_USERNAME_LEN}" name="{USERNAME_FIELDNAME}" value="{USERNAME}" style="width: 180px;" />
32
            </td>
33
          </tr>
34
          <tr>
35
            <td width="170" height="30" align="right">{TEXT_PASSWORD}:</td>
36
            <td>
37
              <input type="password" maxlength="{MAX_PASSWORD_LEN}" name="{PASSWORD_FIELDNAME}" style="width: 180px;" />
38
            </td>
39
          </tr>
40
          <tr style="display: {DISPLAY_REMEMBER_ME};">
41
            <td>&nbsp;</td>
42
            <td>
43
              <input type="checkbox" name="remember" id="remember" value="true" />
44
              <label for="remember">{TEXT_REMEMBER_ME}</label>
45
            </td>
46
          </tr>
47
          <tr>
48
            <td>&nbsp;</td>
49
            <td>
50
              <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;" />
51
            </td>
52
          </tr>
53
          <tr>
54
            <td height="10" colspan="2"></td>
55
          </tr>
56
        </table>
57
      </form>
58
      <center>
59
        <a href="{FORGOTTEN_DETAILS_APP}">{TEXT_FORGOTTEN_DETAILS}</a> 
60
		<br />
61
        <br />
62
        <br />
63
        <a href="{WB_URL}">{TEXT_HOME}</a>
64
      </center>
65
    </td>
66
  </tr>
67
</table>
68
<table cellpadding="0" cellspacing="0" border="0" width="100%" style="padding:10px 0;">
69
  <tr>
70
    <td style="font-size:10px;text-aslign:center;">
71
      <!-- 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. -->
72
      <a href="http://www.websitebaker.com/" style="color: #000000;" target="_blank">Website Baker</a> is	released under the <a href="http://www.gnu.org/copyleft/gpl.html" style="color: #000000;" target="_blank">GNU General Public License</a>
73
      <!-- 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. -->
74
    </td>
75
  </tr>
76
</table>
77
</body>
78
</html>
79
<!-- END mainBlock -->
(12-12/32)