Add help text to be shown on form based login page
[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             <p>
16                 {{ help_text }}
17             </p>
18             <form id="login_form" action="{{ action }}" method="post" enctype="application/x-www-form-urlencoded">
19                 <p>
20                     <label for="username">{{ username_text }}</label>
21                     <br>
22                     <input id="username" name="login_name" value="" size="32" type="text">
23                 </p>
24                 <p>
25                     <label for="password">{{ password_text }}</label>
26                     <br>
27                     <input id="password" name="login_password" value="" size="32" type="password">
28                 </p>
29                 <p>
30                     <input id="submit" name="submit" value="Login" type="submit">
31                 </p>
32             </form>
33         </div>
34     </div>
35 </body>
36 </html>