{% extends "registration/registration_base.html" %} {% load i18n %} {% load bootstrap3 %} {% block title %}{% trans "Register for an account" %}{% endblock %} {% block registration_content %}
{% csrf_token %} {% bootstrap_form form %} {% buttons submit='Sign Up' reset='Cancel' layout='horizontal' %}{% endbuttons %}
{% endblock %} {% comment %} **registration/registration_form.html** Used to show the form users will fill out to register. By default, has the following context: ``form`` The registration form. This will be an instance of some subclass of ``django.forms.Form``; consult `Django's forms documentation `_ for information on how to display this in a template. {% endcomment %}