blob: 36439a91d28f259f4cc5887930554c986b6f4694 (
plain)
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
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:wicket="http://wicket.apache.org/dtds.data/wicket-xhtml1.3-strict.dtd"
xml:lang="en"
lang="en">
<wicket:extend>
<body onload="document.getElementById('password').focus();">
<div>
<form style="text-align:center;" wicket:id="passwordForm">
<center>
<table class="plain">
<tr>
<th><wicket:message key="gb.password"></wicket:message> </th>
<td class="edit"><input type="password" wicket:id="password" id="password" size="30" tabindex="1" /></td>
</tr>
<tr>
<th><wicket:message key="gb.confirmPassword"></wicket:message> </th>
<td class="edit"><input type="password" wicket:id="confirmPassword" size="30" tabindex="2" /></td>
</tr>
</table>
<div class="form-actions">
<input class="btn btn-primary" type="submit" wicket:message="value:gb.save" wicket:id="save" tabindex="3" />
<input class="btn" type="submit" wicket:message="value:gb.cancel" wicket:id="cancel" tabindex="4" />
</div>
</center>
</form>
</div>
</body>
</wicket:extend>
</html>
|