<!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">
|
|
<!-- Head with Wicket-controlled resources in this package -->
|
<wicket:head>
|
<title wicket:id="title">[page title]</title>
|
<link rel="stylesheet" type="text/css" href="gitblit.css"/>
|
<link rel="shortcut icon" href="gitblt-favicon.png" type="image/png" />
|
</wicket:head>
|
|
<body onload="document.getElementById('password').focus();">
|
<div>
|
<div style="padding-top: 10px;text-align:center;">
|
<img src="gitblt_25.png" alt="Gitblit"/><br/>
|
<div style="padding-top:30px;font-weight:bold;" wicket:id="name"></div>
|
</div>
|
<p/>
|
<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>
|
<input type="submit" wicket:message="value:gb.save" wicket:id="save" tabindex="3" />
|
<input type="submit" wicket:message="value:gb.cancel" wicket:id="cancel" tabindex="4" />
|
<div style="padding-top:10px;" wicket:id="feedback"></div>
|
</center>
|
</form>
|
</div>
|
</body>
|
</html>
|