Forked mumble-django project from https://bitbucket.org/Svedrin/mumble-django
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
342 B

  1. {% extends "index.htm" %}
  2. {% load i18n %}
  3. {% block Headline %}Create Account{% endblock %}
  4. {% block Content %}
  5. <h2>Create Account</h2>
  6. <p>Please fill in the following form.</p>
  7. <form method="post" action=".">
  8. <table>
  9. {{ form }}
  10. </table>
  11. <input type="submit" value="{% trans "Create Account" %}" />
  12. </form>
  13. {% endblock %}