Restyle "password reset" confirmation modal to be boxed.

This commit is contained in:
Brock Whittaker 2017-08-15 12:55:36 -07:00 committed by Tim Abbott
parent ba8d370a9f
commit 9c62aee739
1 changed files with 13 additions and 5 deletions

View File

@ -1,10 +1,18 @@
{% extends "zerver/portico_signup.html" %}
{% block portico_content %}
<div class="flex full-page new-style">
<div class="inline-block">
<h1 style="margin-top: 20px">{{ _("We've reset your password!") }}</h1>
<p>{% trans login_url=url('django.contrib.auth.views.login') %}Please <a href="{{ login_url }}">log in</a>.{% endtrans %}</p>
<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>{{ _("We've reset your password!") }}</h1>
</div>
<div class="white-box">
<p>{% trans login_url=url('django.contrib.auth.views.login') %}Please <a href="{{ login_url }}">log in</a> with your new password.{% endtrans %}</p>
</div>
</div>
</div>
</div>
{% endblock %}