{% extends "base/base.html" %} {% load i18n %} {% load account socialaccount %} {% load static %} {% load turnstile_tags %} {% block title %}Register - ThrillWiki{% endblock %} {% block content %}

{% trans "Create Account" %}

{% get_providers as socialaccount_providers %} {% if socialaccount_providers %}
Or continue with email
{% endif %}
{% csrf_token %} {% if form.non_field_errors %} {% endif %}
{% trans "Account information" %} {% include 'forms/partials/form_field.html' with field=form.username label=_("Username") %} {% include 'forms/partials/form_field.html' with field=form.email label=_("Email") %}
{% trans "Password" %}
{% include 'forms/partials/form_field.html' with field=form.password1 label=_("Password") show_help=False %}
  • Must be at least 8 characters long
  • Can't be too similar to your personal information
  • Can't be a commonly used password
  • Can't be entirely numeric
{% include 'forms/partials/form_field.html' with field=form.password2 label=_("Confirm Password") %}
{% turnstile_widget %} {% if redirect_field_value %} {% endif %}

{% trans "Already have an account?" %} {% trans "Sign in" %}

{% endblock %}