Parent: [3abb2e] (diff)

Child: [462c18] (diff)

Download this file

claim_openid.html    23 lines (19 with data), 826 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
{% extends 'jinja_master/master.html' %}
{% 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">Provider</label>
<select id="provider" name="provider">
{%- for label, url in oid_providers %}
<option value="{{url}}">{{label}}</option>
{%- endfor %}
</select>
<br/>
<label for="username">Username:</label>
<input type="text" id="username" name="username" class="text"/><br/>
<input type="submit" id="submit" value="Claim" />
</form>
</div>
{% endblock %}