2020-05-10 18:51:54 +00:00
|
|
|
{% extends 'base.html' %}
|
|
|
|
|
|
|
|
{% block title %}check your email{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
2021-07-07 18:47:21 +00:00
|
|
|
{% if has_smtp %}
|
|
|
|
<div class="row full-margin">Check your email. A login link has been sent to {{ email }}</div>
|
|
|
|
{% else %}
|
|
|
|
<div class="row full-margin">No SMTP server configured. A login link has been printed to stdout.</div>
|
|
|
|
{% endif %}
|
2020-05-11 02:43:06 +00:00
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block pagesource %}/templates/login-landing.html{% endblock %}
|