view templates/registration/registration_form.html @ 213:6f285552a9d0 default tip

Remove requirement to be logged in to see comments
author Jordi Gutiérrez Hermoso <jordigh@octave.org>
date Thu, 16 Jan 2014 10:59:05 -0500
parents eb3371142f4f
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 %}