41 lines
		
	
	
	
		
			1.4 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			41 lines
		
	
	
	
		
			1.4 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% extends "site_base.html" %}
 | 
						|
{% load account_tags %}
 | 
						|
{% load i18n %}
 | 
						|
{% load bootstrap %}
 | 
						|
 | 
						|
{% block head_title %}Sign up{% endblock %}
 | 
						|
{% block page_title %}Sign up{% endblock %}
 | 
						|
 | 
						|
{% block alert %}
 | 
						|
{% 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 %}>
 | 
						|
                {% csrf_token %}
 | 
						|
                {{ form|bootstrap }}
 | 
						|
                {% 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 content -->
 | 
						|
 | 
						|
{% block scripts_extra %}
 | 
						|
    <script type="text/javascript">
 | 
						|
        $(document).ready(function() {
 | 
						|
            $('#id_username').focus();
 | 
						|
        });
 | 
						|
    </script>
 | 
						|
{% endblock %}
 |