-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlostpassword.tpl
28 lines (27 loc) · 1.17 KB
/
lostpassword.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
<div id="login">
<form name="lostpasswordFrm" action="lostpassword.php" method="post">
<table>
<tr>
<td colspan="2" class="center">
<a href="lostpassword.php" title="{GET_NEW_IMAGE}">
<img id="captcha" src="imagecode.php" width="{CAPTCHA_WIDTH}" height="{CAPTCHA_HEIGHT}" alt="captcha image">
</a>
</td>
</tr>
<tr>
<td class="left"><label for="capcode">{TR_CAPCODE}</label></td>
<td class="right"><input type="text" name="capcode" id="capcode" tabindex="1"></td>
</tr>
<tr>
<td class="left"><label for="uname">{TR_USERNAME}</label></td>
<td class="right"><input type="text" name="uname" id="uname" tabindex="2" value="{UNAME}"></td>
</tr>
<tr>
<td colspan="2" class="right">
<button name="Submit" type="submit" tabindex="3">{TR_SEND}</button>
<a class="link_as_button" href="/" tabindex="4">{TR_CANCEL}</a>
</td>
</tr>
</table>
</form>
</div>