{% extends "base.html" %} {% load static %} {% block title %} Sign in to Continue {% endblock title %} {% block content %}
{% if app.app_logo %}
{{ app.app_name }} Logo
{% endif %} {% if success is None or success is False %}

Sign in with email

Please authenticate yourself to continue.

{% if error and error is not NONE %}

Authentication Error

{{ error }}

{% endif %}
OR CONTINUE WITH
{% if passwordless %}
Sign In Using Password
{% else %}
Request Magic Link
{% endif %} {% if registration_enabled %}

Don't have an account? Register

{% endif %}
{% if app.app_name %}{{ app.app_name }}.{% endif %} Secure session established.
{% else %} {% if success and not passwordless %}

Successfully Signed In!

{% if redirect %}

Please wait while you are being redirected.

{% else %}

You can close this window now.

{% endif %} {% elif success and passwordless %}
Magic Link Sent!

Please check your inbox for our email. If it is not there, then check your spam or junk folder.

OR
Sign In Using Password {% endif %} {% endif %}
{% if success and not passwordless and redirect %} {% endif %} {% endblock content %}