Project

General

Profile

« Previous | Next » 

Revision 754

Added by doc over 16 years ago

adjusted error/warning templates to the updated backend layout

View differences:

template.html
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="{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">
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="{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 14
		<img src="{INTERFACE_DIR_URL}/logo.png" alt="Logo" />
15
	</td>
16
	<td width="5">&nbsp;</td>
17
	<td style="font-size: 20px; padding-left: 95px;">
18
		<font style="color: #FFFFFF;">{SECTION_LOGIN}</font>
19
	</td>
20
</tr>
21
</table>
22

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

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

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

  
89
</body>
90
</html>
15
	</td>

16
	<td width="5">&nbsp;</td>

17
	<td style="font-size: 20px; ">

18
		<font style="color: #FFFFFF;">{SECTION_LOGIN}</font>

19
	</td>

20
</tr>

21
</table>

22

  
23
<table cellpadding="0" cellspacing="0" border="0" width="770" align="center" style="margin-top: 30px;">

24
<tr>

25
	<td class="content">

26
	
27
	<form name="login" action="{ACTION_URL}" method="post">

28
	<input type="hidden" name="url" value="{URL}" />

29
	<input type="hidden" name="username_fieldname" value="{USERNAME_FIELDNAME}" />

30
	<input type="hidden" name="password_fieldname" value="{PASSWORD_FIELDNAME}" />

31
		<table cellpadding="5" cellspacing="0" border="0" align="center" width="500">

32
		<tr>

33
			<td height="40" align="center" colspan="2">{MESSAGE}</td>

34
		</tr>

35
		<tr>

36
			<td height="10" colspan="2"></td>

37
		</tr>

38
		<tr>

39
			<td width="170" height="30" align="right">{TEXT_USERNAME}:</td>

40
			<td><input type="text" maxlength="{MAX_USERNAME_LEN}" name="{USERNAME_FIELDNAME}" value="{USERNAME}" style="width: 180px;" /></td>

41
		</tr>

42
		<tr>

43
			<td width="170" height="30" align="right">{TEXT_PASSWORD}:</td>

44
			<td><input type="password" maxlength="{MAX_PASSWORD_LEN}" name="{PASSWORD_FIELDNAME}" style="width: 180px;" /></td>

45
		</tr>

46
		<tr height="30" style="display: {DISPLAY_REMEMBER_ME};">

47
			<td>&nbsp;</td>

48
			<td>

49
				<input type="checkbox" name="remember" id="remember" value="true" />

50
				<label for="remember">

51
					{TEXT_REMEMBER_ME}

52
				</label>

53
			</td>

54
		</tr>

55
		<tr height="30">

56
			<td>&nbsp;</td>

57
			<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>

58
		</tr>

59
		<tr>

60
			<td height="10" colspan="2"></td>

61
		</tr>

62
		</table>

63
	</form>

64
	
65
	<center>

66
		<a href="{FORGOTTEN_DETAILS_APP}">{TEXT_FORGOTTEN_DETAILS}</a>

67
		<br />

68
		<br />

69
		<br />

70
		<a href="{WB_URL}">{TEXT_HOME}</a>

71
	</center>

72

  
73
	</td>

74
</tr>

75
</table>

76

  
77
<table cellpadding="0" cellspacing="0" border="0" width="100%" style="padding: 10px 0px 10px 0px;">

78
<tr>

79
	<td align="center" style="font-size: 10px;">

80
		<!-- 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. -->

81
		<a href="http://www.websitebaker.com/" style="color: #000000;" target="_blank">Website Baker</a>

82
		is	released under the

83
		<a href="http://www.gnu.org/copyleft/gpl.html" style="color: #000000;" target="_blank">GNU General Public License</a>

84
		<!-- 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. -->

85
	</td>

86
</tr>

87
</table>

88

  
89
</body>

90
</html>

91 91
<!-- END mainBlock -->

Also available in: Unified diff