]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/web/templates/default/opac-poc/login.tt2
Merge branch 'master' of git+ssh://yeti.esilibrary.com/home/evergreen/evergreen-equin...
[Evergreen.git] / Open-ILS / web / templates / default / opac-poc / login.tt2
1 [% BLOCK html_head %]
2 <style>
3 </style>
4 [% END %]
5
6 [% 
7     USE CGI;
8     WRAPPER "default/opac/base.tt2"; 
9     ctx.page_title = "Login";
10 %]
11
12 <div style='width:400px; text-align:center; border: 1px solid #888'>
13     <form method='POST'>
14         <table>
15             <tr>
16                 <td>Username or Barcode</td>
17                 <td><input name='username' type='text'/></td>
18             </tr>
19             <tr>
20                 <td>Password</td>
21                 <td><input name='password' type='password'/></td>
22             </tr>
23             <tr>
24                 <td colspan='2' style='text-align:center'>
25                     <input type='submit'/>
26                 </td>
27             </tr>
28         </table>
29         <input type='hidden' name='redirect_to' value='[% CGI.param('redirect_to') || ctx.referer | replace('^http:', 'https:') %]'/>
30     </form>
31 </div>
32 [% END %]