{% extends "base.html" %} {% load i18n %} {% load crispy_forms_tags %} {% block title %}{% trans "Signup" %}{% endblock %} {% block content %}

{% trans "Sign Up" %}

{% blocktrans %}Already have an account? Then please sign in.{% endblocktrans %}

{% comment %} Same providers as the sign-in page, so someone who created their account in the app can find the matching button here (and vice versa) instead of being pushed into a second, password account with the same address. Hidden in the app, where the web OAuth redirect is blocked in embedded WebViews and the app has its own native flow. {% endcomment %} {% if not request.is_mobile_app %} {% if GOOGLE_LOGIN_ENABLED %} Sign up with Google {% endif %} {% if APPLE_LOGIN_ENABLED %} Sign up with Apple {% endif %} {% if FACEBOOK_LOGIN_ENABLED %} Sign up with Facebook {% endif %} {% if GOOGLE_LOGIN_ENABLED or APPLE_LOGIN_ENABLED or FACEBOOK_LOGIN_ENABLED %}
Or create an account on this site:
{% endif %} {% endif %}
{% csrf_token %} {{ form | crispy }} {% if redirect_field_value %} {% endif %}
{% comment %} Terms and privacy at the point of sign-up. Apple requires both to be reachable from inside the app (App Store Review 5.1.1), and the app's WebView allow-lists exactly these two paths so they open in place instead of kicking a half-filled form out to the system browser. The app draws its own copy of these links natively on this screen; these are for the web page. {% endcomment %}

By signing up you agree to our terms of service and privacy policy.

{% endblock %}