]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/templates/password-reset/request-form.tt2
Repaired merge conflicts resuling from ttopac-move-templates
[working/Evergreen.git] / Open-ILS / src / templates / password-reset / request-form.tt2
1 <html>
2 <head>
3   <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
4   <title>[% i18n.REQUEST_TITLE %]</title>
5   <link rel="stylesheet" type="text/css" href="/js/dojo/dijit/themes/tundra/tundra.css" />
6   <style type="text/css">
7     body, html { font-family:helvetica,arial,sans-serif; }
8   </style>
9 </head>
10 <body class="tundra">
11   <h1>[% i18n.REQUEST_TITLE %]</h1>
12   <p class='[% status.style %]'>[% status.msg %]</p>
13   <form method="post" action="[% uri %]" id="requestPwdReset">
14     <table>
15       <tr>
16         <td><label for="barcode">[% i18n.BARCODE_PROMPT %] </label></td>
17         <td><input type="text" id="barcode" name="barcode" dojoType="dijit.form.TextBox"/></td>
18       </tr>
19       <tr>
20         <td><label for="username">[% i18n.USERNAME_PROMPT %] </label></td>
21         <td><input type="text" id="barcode" name="username" dojoType="dijit.form.TextBox"/></td>
22       </tr>
23     </table>
24     <!--<label for="email">[% i18n.EMAIL_PROMPT %] </label><input type="text" name="email"/></br>-->
25     <button name="submit" id="submitButton" type="submit" dojoType="dijit.form.Button">[% i18n.BUTTON_SUBMIT %]</button>
26   </form>
27 </body>
28 <script type="text/javascript" src="/js/dojo/dojo/dojo.js" djConfig="parseOnLoad: true"></script>
29 <script type="text/javascript">
30   dojo.require("dijit.form.Button");
31   dojo.require("dijit.form.ValidationTextBox");
32 </script>
33 </html>