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