-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.tpl
31 lines (31 loc) · 1.28 KB
/
index.tpl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
ROCKETFUEL
<div id="login">
<form name="login" action="index.php" method="post">
<table>
<tr>
<td class="left"><label for="uname">{TR_USERNAME}</label></td>
<td class="right"><input type="text" name="uname" id="uname" value="{UNAME}"></td>
</tr>
<tr>
<td class="left"><label for="password">{TR_PASSWORD}</label></td>
<td class="right"><input type="password" name="upass" id="password" value=""></td>
</tr>
<tr>
<td colspan="2" class="right">
<!-- BDP: lost_password_support -->
<a class="link_as_button" href="lostpassword.php">{TR_LOSTPW}</a>
<!-- EDP: lost_password_support -->
<button type="submit" name="Submit" tabindex="3">{TR_LOGIN}</button>
</td>
</tr>
<!-- BDP: ssl_support -->
<tr>
<td colspan="2" class="center">
<a class="icon {SSL_IMAGE_CLASS}" href="{SSL_LINK}" title="{TR_SSL_DESCRIPTION}">{TR_SSL}</a>
</td>
</tr>
<!-- EDP: ssl_support -->
</table>
<input type="hidden" name="action" value="login">
</form>
</div>