40 lines
1.3 KiB
HTML
40 lines
1.3 KiB
HTML
{% extends "base.html" %}
|
|
|
|
{% load account_tags %}
|
|
{% load i18n %}
|
|
|
|
{% block title %}{% trans "Sign up" %}{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="row">
|
|
<div class="col-md-4">
|
|
<form id="signup_form" method="post" action="{% url "account_signup" %}" autocapitalize="off" {% if form.is_multipart %} enctype="multipart/form-data"{% endif %}>
|
|
<legend>{% trans "Sign up" %}</legend>
|
|
{% csrf_token %}
|
|
{{ form }}
|
|
{% if redirect_field_value %}
|
|
<input type="hidden" name="{{ redirect_field_name }}" value="{{ redirect_field_value }}" />
|
|
{% endif %}
|
|
<button type="submit" class="btn btn-primary">{% trans "Sign up" %}</button>
|
|
</form>
|
|
<p class="login-signup">
|
|
<small>
|
|
{% trans "Already have an account?" %} <strong><a href="{% urlnext 'account_login' %}">{% trans "Log in" %}</a></strong>
|
|
</small>
|
|
</p>
|
|
</div>
|
|
<div class="col-md-4">
|
|
{% include "account/_signup_sidebar.html" %}
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|
|
|
|
{% block scripts %}
|
|
{{ block.super }}
|
|
<script type="text/javascript">
|
|
$(document).ready(function() {
|
|
$('#id_username').focus();
|
|
});
|
|
</script>
|
|
{% endblock %}
|