Project

General

Profile

1 1728 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 1728 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 1728 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 1728 Luisehahne
	</td>
39
</tr>
40
<!-- BEGIN show_smart_login_block -->
41
<tr>
42
	<td>&nbsp;</td>
43 1833 Luisehahne
	<td>&nbsp;</td>
44 1728 Luisehahne
</tr>
45
<!-- END show_smart_login_block -->
46 1742 Luisehahne
<tr class="submit">
47
	<td>
48
	<p><input type="submit" name="submit" value="{TEXT_LOGIN}"  /></p>
49 1728 Luisehahne
	</td>
50 1742 Luisehahne
	<td>
51
	<p><input type="reset" name="reset" value="{TEXT_RESET}" /></p>
52
	</td>
53
	<td>
54 1833 Luisehahne
	<p><button type="button" value="cancel" onclick="javascript:window.location='{REDIRECT_URL}/';" >{TEXT_CANCEL}</button></p>
55 1742 Luisehahne
	</td>
56 1728 Luisehahne
</tr>
57 1742 Luisehahne
<tr class="row6">
58
	<td colspan="3">
59 1728 Luisehahne
	<p class="link"><a href="{FORGOT_URL}">{TEXT_FORGOTTEN_DETAILS}</a></p>
60
	</td>
61
</tr>
62 1742 Luisehahne
</tbody>
63 1728 Luisehahne
</table>
64
</form>
65 1742 Luisehahne
</div>
66
67 1728 Luisehahne
<!-- END main_block -->