{% extends "base.html" %} {% block title %}Sign in ยท {{ app_name }}{% endblock %} {% block extra_head %} {% endblock %} {% block content %} {# Framework template (feather/auth/email_link.py): styled here so it works in any app. Override it with templates/auth/email_sign_in.html in your own app. #}
{% if state == "form" %}

Sign in to {{ app_name }}

Enter your email address and we'll send you a link to sign in. No password needed.

{% if error %}{% endif %}
{% elif state == "sent" %}

Check your email

If {{ email }} can sign in to {{ app_name }}, a link is on its way. It works once and expires in {{ minutes }} minutes.

Use a different address {% elif state == "confirm" %}

Sign in to {{ app_name }}

You're signing in as {{ email }}.

{% else %}

This link has expired

Sign-in links work once and expire after {{ minutes }} minutes. Ask for a new one.

Send a new link {% endif %}
{% endblock %}