{% extends "base.html" %} {% load static %} {% load i18n %} {% load allauth account %} {% block head_title %} {% trans "Sign Up" %} {% endblock head_title %} {% block content %} {% trans "Create your account" %} {% trans "Already have an account?" %} {% trans "Login here" %} {% if not SOCIALACCOUNT_ONLY %} {% url 'account_signup' as signup_url %} {% csrf_token %} {% trans "Email" %} {% if form.email.errors %} {{ form.email.errors }} {% endif %} {% trans "Username" %} {% if form.username.errors %} {{ form.username.errors }} {% endif %} {% trans "Password" %} {% if form.password1.errors %} {{ form.password1.errors }} {% endif %} {% trans "Confirm Password" %} {% if form.password2.errors %} {{ form.password2.errors }} {% endif %} {% trans "I Agree Terms and conditions" %} {% trans "Register" %} {{ redirect_field }} {% endif %} {% endblock content %} {% block extra_body %} {{ block.super }} {% endblock extra_body %}