2014-11-08 20:18:14 -07:00
|
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html>
|
|
|
|
|
<head>
|
|
|
|
|
<title>${TitlePasswordReset}</title>
|
|
|
|
|
</head>
|
|
|
|
|
<body>
|
2015-05-05 16:15:47 -07:00
|
|
|
|
<div data-role="page" class="page standalonePage forgotPasswordPage" data-theme="b">
|
2014-11-08 20:18:14 -07:00
|
|
|
|
|
|
|
|
|
<div data-role="content">
|
|
|
|
|
|
|
|
|
|
<form class="forgotPasswordPinForm" style="text-align: center; margin: 0 auto;">
|
|
|
|
|
|
|
|
|
|
<div style="text-align: left;">
|
|
|
|
|
<h2>${HeaderPasswordReset}</h2>
|
|
|
|
|
|
|
|
|
|
<label for="txtPin" style="text-align: left;">${LabelPasswordRecoveryPinCode}</label>
|
|
|
|
|
<input type="text" id="txtPin" required="required" />
|
|
|
|
|
|
|
|
|
|
<br />
|
|
|
|
|
|
|
|
|
|
<p>
|
2015-05-05 16:15:47 -07:00
|
|
|
|
<button type="submit" data-icon="check">
|
2014-11-08 20:18:14 -07:00
|
|
|
|
${ButtonSubmit}
|
|
|
|
|
</button>
|
|
|
|
|
</p>
|
|
|
|
|
|
|
|
|
|
<p>
|
|
|
|
|
<a data-role="button" data-icon="delete" href="login.html">
|
|
|
|
|
${ButtonCancel}
|
|
|
|
|
</a>
|
|
|
|
|
</p>
|
|
|
|
|
</div>
|
|
|
|
|
</form>
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
|
$('.forgotPasswordPinForm').off('submit', ForgotPasswordPinPage.onSubmit).on('submit', ForgotPasswordPinPage.onSubmit);
|
|
|
|
|
</script>
|
|
|
|
|
</div>
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|