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=utf-8" />
7
<link href="{INTERFACE_DIR_URL}/stylesheet.css" rel="stylesheet" type="text/css">
8
</head>
9
<body onload="document.login.{USERNAME_FIELDNAME}.focus();">
10

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

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

    
74
	</td>
75
</tr>
76
</table>
77

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

    
90
</body>
91
</html>
92
<!-- END mainBlock -->
(2-2/3)