1
|
<!-- BEGIN main_block -->
|
2
|
{CSS_BLOCK}
|
3
|
|
4
|
<!-- BEGIN message_block -->
|
5
|
{MESSAGE_VALUE}
|
6
|
<!-- END message_block -->
|
7
|
<hr /><br />
|
8
|
<div class="account">
|
9
|
<div class="login-box">
|
10
|
<form class="login-box" action="{ACTION_URL}" method="post">
|
11
|
<input type="hidden" name="action" value="login" />
|
12
|
<input type="hidden" name="username_fieldname" value="{USER_FIELDNAME}" />
|
13
|
<input type="hidden" name="password_fieldname" value="{PASSWORD_FIELDNAME}" />
|
14
|
<input class="none" type="hidden" name="remember" id="remember" value="true" />
|
15
|
<input type="hidden" name="redirect" value="{REDIRECT_URL}" />
|
16
|
<h3>{TEXT_LOGIN}</h3>
|
17
|
<table>
|
18
|
<tbody>
|
19
|
<tr>
|
20
|
<td colspan="2" class="button">
|
21
|
<strong>{THISAPP_MESSAGE_VALUE}</strong>
|
22
|
</td>
|
23
|
</tr>
|
24
|
<tr>
|
25
|
<td colspan="2"> </td>
|
26
|
</tr>
|
27
|
<tr>
|
28
|
<td>{TEXT_USERNAME}:</td>
|
29
|
<td class="input">
|
30
|
<input type="text" name="{USER_FIELDNAME}" maxlength="30" style="width:98%;"/>
|
31
|
<script type="text/javascript">
|
32
|
// document.login.{USER_FIELDNAME}.focus();
|
33
|
var ref= document.getElementById("{USER_FIELDNAME}");
|
34
|
if (ref) ref.focus();
|
35
|
</script>
|
36
|
</td>
|
37
|
</tr>
|
38
|
<tr>
|
39
|
<td>{TEXT_PASSWORD}:</td>
|
40
|
<td class="input">
|
41
|
<input type="password" name="{PASSWORD_FIELDNAME}" maxlength="30" style="width:98%;"/>
|
42
|
</td>
|
43
|
</tr>
|
44
|
<!-- BEGIN show_smart_login_block -->
|
45
|
<tr>
|
46
|
<td> </td>
|
47
|
<td> </td>
|
48
|
</tr>
|
49
|
<!-- END show_smart_login_block -->
|
50
|
<tr>
|
51
|
<td colspan="2"> </td>
|
52
|
</tr>
|
53
|
<tr>
|
54
|
<td colspan="2" class="button">
|
55
|
<button type="submit" name="submit" value="submit">{TEXT_LOGIN}</button>
|
56
|
<button type="reset" name="reset" value="reset">{TEXT_RESET}</button>
|
57
|
<button type="button" value="cancel" onclick="javascript:window.location='{REDIRECT_URL}/';" >{TEXT_CANCEL}</button>
|
58
|
</td>
|
59
|
</tr>
|
60
|
<tr>
|
61
|
<td colspan="2" class="button">
|
62
|
<p class="link"><a href="{FORGOT_URL}">{TEXT_FORGOTTEN_DETAILS}</a></p>
|
63
|
</td>
|
64
|
</tr>
|
65
|
</tbody>
|
66
|
</table>
|
67
|
</form>
|
68
|
</div>
|
69
|
</div>
|
70
|
<!-- END main_block -->
|