| 1 |
1719
|
Luisehahne
|
<!-- BEGIN main_block -->
|
| 2 |
|
|
<!-- BEGIN message_block -->
|
| 3 |
|
|
{MESSAGE_VALUE}
|
| 4 |
|
|
<!-- END message_block -->
|
| 5 |
|
|
|
| 6 |
|
|
<hr />
|
| 7 |
|
|
<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 |
|
|
<table summary="" style="width: 60%; font-size: 1em;">
|
| 14 |
|
|
<tr>
|
| 15 |
|
|
<td height="10" colspan="2" style="text-align: center;"><h1>{TEXT_LOGIN}</h1></td>
|
| 16 |
|
|
</tr>
|
| 17 |
|
|
<tr>
|
| 18 |
|
|
<td height="40" style="text-align: center;" colspan="2">
|
| 19 |
|
|
<strong style="text-align: center;">{THISAPP_MESSAGE_VALUE}</strong>
|
| 20 |
|
|
</td>
|
| 21 |
|
|
</tr>
|
| 22 |
|
|
<tr>
|
| 23 |
|
|
<td style="width:100px">{TEXT_USERNAME}:</td>
|
| 24 |
|
|
<td class="value_input">
|
| 25 |
|
|
<input type="text" name="{USER_FIELDNAME}" maxlength="30" style="width:220px;"/>
|
| 26 |
|
|
<script type="text/javascript">
|
| 27 |
|
|
// document.login.{USER_FIELDNAME}.focus();
|
| 28 |
|
|
var ref= document.getElementById("{USER_FIELDNAME}");
|
| 29 |
|
|
if (ref) ref.focus();
|
| 30 |
|
|
</script>
|
| 31 |
|
|
</td>
|
| 32 |
|
|
</tr>
|
| 33 |
|
|
<tr>
|
| 34 |
|
|
<td style="width:100px">{TEXT_PASSWORD}:</td>
|
| 35 |
|
|
<td class="value_input">
|
| 36 |
|
|
<input type="password" name="{PASSWORD_FIELDNAME}" maxlength="30" style="width:220px;"/>
|
| 37 |
|
|
</td>
|
| 38 |
|
|
</tr>
|
| 39 |
|
|
<!-- BEGIN show_smart_login_block -->
|
| 40 |
|
|
<tr>
|
| 41 |
|
|
<td> </td>
|
| 42 |
|
|
<td>
|
| 43 |
|
|
<input type="checkbox" name="remember" id="remember" value="true"/>
|
| 44 |
|
|
<label for="remember">{TEXT_REMEMBER_ME}</label>
|
| 45 |
|
|
</td>
|
| 46 |
|
|
</tr>
|
| 47 |
|
|
<!-- END show_smart_login_block -->
|
| 48 |
|
|
<tr>
|
| 49 |
|
|
<td colspan="2" style="text-align: center;">
|
| 50 |
|
|
<input type="submit" name="submit" value="{TEXT_LOGIN}" style="padding: 3px;" />
|
| 51 |
|
|
<input type="reset" name="reset" value="{TEXT_RESET}" style="padding: 3px;" />
|
| 52 |
|
|
<button type="button" value="cancel" onclick="javascript:window.location = '{HTTP_REFERER}';" style="padding: 3px;" >{TEXT_CANCEL}</button>
|
| 53 |
|
|
</td>
|
| 54 |
|
|
</tr>
|
| 55 |
|
|
<tr>
|
| 56 |
|
|
<td colspan="2" style="text-align: center;">
|
| 57 |
|
|
<p class="link"><a href="{FORGOT_URL}">{TEXT_FORGOTTEN_DETAILS}</a></p>
|
| 58 |
|
|
</td>
|
| 59 |
|
|
</tr>
|
| 60 |
|
|
</table>
|
| 61 |
|
|
</form>
|
| 62 |
|
|
<!-- END main_block -->
|