4e490fead576f6649dedc987e7e5e0e30628d7a0
[cascardo/ipsilon.git] / templates / login / pam.html
1 <!doctype html>
2 <html lang="en">
3 <head>
4     <meta charset="UTF-8"></meta>
5     <title>{{ title }}</title>
6     <link href="{{ basepath }}/ui/ipsilon.css" type="text/css" rel="stylesheet"></link>
7     <link href="{{ basepath }}/ui/favicon.ico" type="image/ico" rel="icon"></link>
8 </head>
9 <body>
10     <div id="container">
11         <div id="logo">
12             <p>Ipsilon</p>
13         </div>
14         <div id="login">
15             <form id="login_form" action="{{ action }}" method="post" enctype="application/x-www-form-urlencoded">
16                 <p>
17                     <label for="username">{{ username_text }}</label>
18                     <br>
19                     <input id="username" name="login_name" value="" size="32" type="text">
20                 </p>
21                 <p>
22                     <label for="password">{{ password_text }}</label>
23                     <br>
24                     <input id="password" name="login_password" value="" size="32" type="password">
25                 </p>
26                 <p>
27                     <input id="submit" name="submit" value="Login" type="submit">
28                 </p>
29             </form>
30         </div>
31     </div>
32 </body>
33 </html>