Parent: [67df1e] (diff)

Child: [ddf08c] (diff)

Download this file

claim_openid.html    30 lines (26 with data), 924 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{% set hide_left_bar = True %}
{% extends g.theme.master %}
{% block title %}OpenId Claim Form{% endblock %}
{% block header %}OpenId Claim Form{% endblock %}
{% block content %}
<div id="loginform_oid">
<form action="claim_verify_oid" method="post" class="loginfields">
<label for="provider" class="grid-4">Provider</label>
<div class="grid-18">
<select id="provider" name="provider">
{%- for label, url in oid_providers %}
<option value="{{url}}">{{label}}</option>
{%- endfor %}
</select>
</div>
<label class="grid-4" for="username">Username:</label>
<div class="grid-18">
<input type="text" id="username" name="username" class="text"/>
</div>
<label class="grid-4">&nbsp;</label>
<div class="grid-18">
<input type="submit" id="submit" value="Claim">
</div>
</form>
</div>
{% endblock %}