equal
deleted
inserted
replaced
1 {% extends "registration/base.html" %} |
|
2 {% load i18n %} |
|
3 {% block js_import %}{{ block.super }} |
|
4 <script type="text/javascript"> |
|
5 $(document).ready(function() { |
|
6 $("#signup_form").validate(); |
|
7 }); |
|
8 </script> |
|
9 {% endblock %} |
|
10 |
|
11 {% block content_title %}{% trans 'Sign up' %}{% endblock %} |
|
12 {% block iricontent%} |
|
13 <form class="signupform" id="signup_form" method="post" action=""> {% csrf_token %} |
|
14 <ul> |
|
15 {{form.as_ul}} |
|
16 <li><input class="button" type="submit" value="{% trans 'Save' %} "/></li> |
|
17 </ul> |
|
18 </form> |
|
19 |
|
20 {% endblock%} |
|