view 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
line wrap: on
line source

{% extends "base.djhtml" %}

{% block title %}
Registration details
{% endblock %}


{% block content %}
<p>
  Please give us some basic information to set up your account.
  Valid usernames consist of letters, numbers, and underscores.
</p>

{% if form.errors %}
<p class="error">
  Please correct the errors below.
</p>
{% endif %}

<form action="." method="post">
  {% csrf_token %}
  <table>
    {{form.as_table}}
  </table>
  <button class="button" type="submit">Submit</button>
</form>
{% endblock %}