{% extends "mvp/base.html" %}
{% load static %}
{% comment %}
Shared entrance page for anonymous-facing pages: the core package's
extension point for any integration's login, signup, password reset and
similar pages. An extending page reaches this with a bare {% extends %}
and fills {% block content %}, and gets the full-screen background, the
centered card, the site logo, the package stylesheet and the messages
region for free.
{% endcomment %}
{% block styles %}
{% endblock styles %}
{% block app %}
{% block entrance %}
{% block content %}
{% endblock content %}
{% endblock entrance %}
{% endblock app %}