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
<meta http-equiv="content-language" content="{LANGUAGE}" />
8
<meta name="description" content="{TEXT_LOGIN}" />
9
<meta name="keywords" content="{TEXT_LOGIN}" />
10
<link href="{THEME_URL}/theme.css" rel="stylesheet" type="text/css" />
11
</head>
12
<body onload="document.login.{USERNAME_FIELDNAME}.focus();">
13

    
14
<table cellpadding="0" cellspacing="0" border="0" width="770" align="center">
15
<tr>
16
	<td width="60" valign="top">
17
		<img src="{THEME_URL}/images/logo.png" alt="Logo" />
18
	</td>
19
	<td width="5">&nbsp;</td>
20
	<td style="font-size: 20px; ">
21
		<font style="color: #FFFFFF;">{SECTION_LOGIN}</font>
22
	</td>
23
</tr>
24
</table>
25

    
26
<table cellpadding="0" cellspacing="0" border="0" width="770" align="center" style="margin-top: 30px;" class="container">
27
<tr>
28
	<td class="content">
29
	
30
	<form name="login" action="{ACTION_URL}" method="post">
31
	<input type="hidden" name="url" value="{URL}" />
32
	<input type="hidden" name="username_fieldname" value="{USERNAME_FIELDNAME}" />
33
	<input type="hidden" name="password_fieldname" value="{PASSWORD_FIELDNAME}" />
34
		<table cellpadding="5" cellspacing="0" border="0" align="center" width="500">
35
		<tr>
36
			<td height="40" align="center" colspan="2">{MESSAGE}</td>
37
		</tr>
38
		<tr>
39
			<td height="10" colspan="2"></td>
40
		</tr>
41
		<tr>
42
			<td width="170" height="30" align="right">{TEXT_USERNAME}:</td>
43
			<td><input type="text" maxlength="{MAX_USERNAME_LEN}" name="{USERNAME_FIELDNAME}" value="{USERNAME}" style="width: 180px;" /></td>
44
		</tr>
45
		<tr>
46
			<td width="170" height="30" align="right">{TEXT_PASSWORD}:</td>
47
			<td><input type="password" maxlength="{MAX_PASSWORD_LEN}" name="{PASSWORD_FIELDNAME}" style="width: 180px;" /></td>
48
		</tr>
49
		<tr style="display: {DISPLAY_REMEMBER_ME};">
50
			<td>&nbsp;</td>
51
			<td>
52
				<input type="checkbox" name="remember" id="remember" value="true" />
53
				<label for="remember">
54
					{TEXT_REMEMBER_ME}
55
				</label>
56
			</td>
57
		</tr>
58
		<tr>
59
			<td>&nbsp;</td>
60
			<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>
61
		</tr>
62
		<tr>
63
			<td height="10" colspan="2"></td>
64
		</tr>
65
		</table>
66
	</form>
67
	
68
	<center>
69
		<a href="{FORGOTTEN_DETAILS_APP}">{TEXT_FORGOTTEN_DETAILS}</a>
70
		<br />
71
		<br />
72
		<br />
73
		<a href="{WB_URL}">{TEXT_HOME}</a>
74
	</center>
75

    
76
	</td>
77
</tr>
78
</table>
79

    
80
<table cellpadding="0" cellspacing="0" border="0" width="100%" style="padding: 10px 0px 10px 0px;">
81
<tr>
82
	<td align="center" style="font-size: 10px;">
83
		<!-- 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. -->
84
		<a href="http://www.websitebaker.com/" style="color: #000000;" target="_blank">Website Baker</a>
85
		is	released under the
86
		<a href="http://www.gnu.org/copyleft/gpl.html" style="color: #000000;" target="_blank">GNU General Public License</a>
87
		<!-- 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. -->
88
	</td>
89
</tr>
90
</table>
91

    
92
</body>
93
</html>
94
<!-- END mainBlock -->
(12-12/31)