{% extends "base.html" %} {% block title %}Sign in — Mockup{% endblock %} {% block content %}

Sign in to Mimir

New here? Create an account

Mockup — FOB-AUTH-LOGIN-1  ·  State: {{ state_label }}  ·  normal  |  post-register  |  unverified
Auth flow: ① Register② post-register③ unverified④ Login (here)⑤ Profile⑥ Edit Profile
{% if state == "post-register" %}
Account created. Please check your inbox and verify your email before logging in.
{% endif %} {% if state == "unverified" %}
Please verify your email address before logging in.
Check your inbox for a verification link.
A new verification email has been sent.
{% endif %} {% if state == "email-changed" %}
Email updated. Please verify your new address before logging in again.
A new verification email has been sent.
{% endif %}
Invalid username or password.
{% csrf_token %}
Demo credentials: wrong / anything → invalid error. unverified / any → unverified state. maria / demo → success → profile.
{% endblock %} {% block extra_js %} {% endblock %}