remove auto_increment from sql dump
[anoweco.git] / data / templates / auth-choose.htm
1 <html xmlns="http://www.w3.org/1999/xhtml">
2  <head>
3   <meta charset="utf-8"/>
4   <title>Select your identity</title>
5  </head>
6  <body>
7   <h1>Select your identity</h1>
8   <p>
9    You may log in to {{client_id}} with any identity you like.
10   </p>
11
12   <form method="post" action="{{formaction}}">
13    {% for key, value in auth %}
14    <input type="hidden" name="auth[{{key}}]" value="{{value}}"/>
15    {% endfor %}
16
17    <ul>
18     <li>
19      <label>
20       <input type="radio" name="id[mode]" value="anonymous" checked="checked"/>
21       Anonymous
22      </label>
23     </li>
24     <li>
25      <label>
26       <input type="radio" name="id[mode]" value="data"/> With a name
27      </label>
28      <ul>
29       <li>
30        <label for="id-name">Name:</label>
31        <input type="text" name="id[name]" id="id-name"/>
32       </li>
33       <li>
34        <label for="id-email">E-Mail:</label>
35        <input type="email" name="id[email]" id="id-email"/>
36        (used to fetch avatar image. not stored.)
37       </li>      
38      </ul>
39      <p>
40       All values are optional.
41      </p>
42     </li>
43    </ul>
44    <button type="submit">Login</button>
45   </form>
46  </body>
47 </html>