{% extends "base.html" %} {% load i18n %} {% load crispy_forms_tags %} {% load account socialaccount %} {% block title %}{% trans "Sign In" %}{% endblock %} {% block content %}

{% trans "Sign In" %}

{% comment %} The native app has its own Google Sign-In path (see MobileGoogleAuthView); the web OAuth redirect is blocked inside embedded WebViews ("disallowed_useragent"), so hide it in the app. {% endcomment %} {% if GOOGLE_LOGIN_ENABLED and not request.is_mobile_app %} Sign in with your Google account {% endif %}

{% if GOOGLE_LOGIN_ENABLED and not request.is_mobile_app %}Don't have a Google account? {% endif %}Sign in with your account on this site:
{% csrf_token %} {{ form | crispy }} {% if redirect_field_value %} {% endif %} Create a new account {% trans "Forgot Password" %}
{% endblock %}