{% extends 'layouts/base-auth.html' %} {% load static %} {% block content %} Back to homepage Create Account {% csrf_token %} {{ form.username.label }} {{ form.username }} {{ form.username.errors }} {{ form.email.label }} {{ form.email }} {{ form.email.errors }} {{ form.password1.label }} {{ form.password1 }} {{ form.password1.errors }} {{ form.password2.label }} {{ form.password2 }} {{ form.password2.errors }} I agree to the terms and conditions Sign up Already have an account? Login here {% endblock content %}
Back to homepage