comparison templates/registration/registration_form.html @ 90:eb3371142f4f

Remove inheriting from whitebox.djhtml for template files
author dellsystem <ilostwaldo@gmail.com>
date Fri, 24 Aug 2012 23:48:14 -0400
parents e019ca8e14f6
children
comparison
equal deleted inserted replaced
89:64f69c85df71 90:eb3371142f4f
1 {% extends "whitebox.djhtml" %} 1 {% extends "base.djhtml" %}
2 2
3 {% block boxtitle %} 3 {% block title %}
4 Registration details 4 Registration details
5 {% endblock %} 5 {% endblock %}
6 6
7 7
8 {% block boxcontents %} 8 {% block content %}
9 <p> 9 <p>
10 Please give us some basic information to set up your account. 10 Please give us some basic information to set up your account.
11 Valid usernames consist of letters, numbers, and underscores. 11 Valid usernames consist of letters, numbers, and underscores.
12 </p> 12 </p>
13 13
20 <form action="." method="post"> 20 <form action="." method="post">
21 {% csrf_token %} 21 {% csrf_token %}
22 <table> 22 <table>
23 {{form.as_table}} 23 {{form.as_table}}
24 </table> 24 </table>
25 <input class="button" type="submit" value="Submit" /> 25 <button class="button" type="submit">Submit</button>
26 </form> 26 </form>
27 {% endblock %} 27 {% endblock %}