aboutsummaryrefslogtreecommitdiffstats
path: root/templates/registration/registration_form.html
blob: 1f76ddbb922f8f8bf3ab2652d260e59f92cbf16d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{% extends "base.html" %}
{% load i18n %}

{% block content %}
<div class="page-header">
	<h1>Create an account</h1>
</div>

<form id="registration_form" method="post" action=".">
  {{ form.as_p }}

  <input type="submit" class="btn" value="{% trans 'Submit' %}" />
  {% csrf_token %}
</form>
{% endblock %}


{% block scripts %}
<script>
    $(document).ready(function() {
        $("#registration_form input:text, #registration_form textarea").first().focus();
    });
</script>
{% endblock %}