Files
zulip/templates/zerver/reset_done.html
Lauryn Menard 514e5b990e templates: Update reset_done.html page text and title.
Updates the text and title used when the password reset done page
to work for situations where the user is resetting a forgotten
password and for situation where the user is setting a password
for the first time (e.g. SSO login, demo organizations).
2023-02-28 11:45:01 -08:00

23 lines
706 B
HTML

{% extends "zerver/portico_signup.html" %}
{% block title %}
<title>{{ _(" New password successfully set") }} | Zulip</title>
{% endblock %}
{% 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>{{ _("You've set a new password!") }}</h1>
</div>
<div class="white-box">
<p>{% trans login_url=url('login') %}Please <a href="{{ login_url }}">log in</a> with your new password.{% endtrans %}</p>
</div>
</div>
</div>
</div>
{% endblock %}