{% extends "base.html" %} {% load i18n %} {% load crispy_forms_tags %} {% block title %}{% trans "Signup" %}{% endblock %} {% block content %}
{% 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 %}By signing up you agree to our terms of service and privacy policy.
{% endblock %}