Child: [739c16] (diff)

Download this file

setup_openid_user.html    20 lines (16 with data), 625 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
{% extends g.theme.master %}
{% block title %}Login Form{% endblock %}
{% block header %}Choose Login Name{% endblock %}
{% block content %}
<div id="loginform">
<form method="POST" action="do_setup_openid_user">
<label for="username">Login Name:</label>
<input id="username" name="username"/>
<br />
<label for="display_name">Displayed Name:</label>
<input id="display_name" name="display_name"/>
<br />
<input type="submit" value="Setup Account"/>
</form>
</div>
{% endblock %}