Parent: [3abb2e] (diff)
Child: [462c18] (diff)
Download this file
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
{% extends 'jinja_master/master.html' %} {% 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 %}