Files
zulip/templates/zerver/reset_emailed.html
Ivan Mitev 0f582dfe1f portico: Add return to login button to password reset end.
Previously, we had a "Return to login" button on the previous page of
the password reset flow, but none on the final page.

Note that this button is only shown in the Zulip Electron app.

Fixes #13378.
2019-11-18 12:21:40 -08:00

21 lines
702 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="get-started">
<h1>{{ _("Password reset sent!") }}</h1>
</div>
<div class="white-box">
<p>{{ _('Check your email in a few minutes to finish the process.') }}</p>
{% include 'zerver/dev_env_email_access_details.html' %}
{% include 'zerver/include/back_to_login_component.html' %}
</div>
</div>
</div>
</div>
{% endblock %}