Files
zulip/templates/zerver/log_into_subdomain_token_invalid.html
Mateusz Mandera 8686bbf637 auth: Show a user-facing page when wrong token given to /subdomain/.
This used to show a blank page. Considering that the links remain valid
only for 15 seconds it's important to show something more informative to
the user.
2020-04-05 12:29:09 -07:00

15 lines
490 B
HTML

{% extends "zerver/portico_signup.html" %}
{% block portico_content %}
<div class="app portico-page">
<div class="app-main portico-page-container center-block flex full-page account-creation new-style">
<div class="inline-block">
<div class="app-main white-box">
<h1>{{ _("Invalid or expired login session.") }}</h1>
<a href="{{ login_url }}">{{ _("Log in") }}</a>.
</div>
</div>
</div>
</div>
{% endblock %}