Created
July 10, 2015 18:33
-
-
Save cacheleocode/058d1730adcf1e349521 to your computer and use it in GitHub Desktop.
registration form
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {% extends "base2_interior.html" %} | |
| {% load i18n %}{% get_current_language as LANG %} | |
| {% load media %} | |
| {% block js %} | |
| <script type="text/javascript"> | |
| $(function() { | |
| $("#id_username").focus(); | |
| }); | |
| </script> | |
| {% endblock js %} | |
| {% block head-title %}{% trans "Create new account" %}{% endblock %} | |
| {% block title %}{% trans "Create new account" %}{% endblock %} | |
| {% block breadcrumbs %}{{ block.super }} | |
| <li><a href="{% url community-index %}">{% trans "Community" %}</a> | |
| <li><a href="{% url accounts-index %}">{% trans "Nima-kai" %}</a></li> | |
| <li>{% trans "Create new account" %}</li> | |
| {% endblock %} | |
| {% block primary %} | |
| <form action="." method="POST">{% csrf_token %} | |
| <table> | |
| {{ form.as_table }} | |
| </table> | |
| <p><input type="submit" value="Submit"></p> | |
| </form> | |
| {% endblock %} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment