2013-07-29 23:03:31 +02:00
|
|
|
{% extends "zerver/portico_signup.html" %}
|
2012-11-05 19:53:16 +01:00
|
|
|
{% block portico_content %}
|
|
|
|
|
2017-05-01 21:33:41 +02:00
|
|
|
<div class="flex new-style app portico-page">
|
|
|
|
<div class="inline-block">
|
|
|
|
<div class="lead">
|
|
|
|
<h1 class="get-started">{{ _('Reset your password') }}</h1>
|
|
|
|
</div>
|
2017-04-20 21:02:56 +02:00
|
|
|
|
2017-05-03 19:48:52 +02:00
|
|
|
<div class="app-main forgot-password-container white-box new-style">
|
2017-05-01 21:33:41 +02:00
|
|
|
|
|
|
|
<p>Forgot your password? No problem, we'll send a link to reset your password to the email you signed up with.</p>
|
2017-04-20 21:02:56 +02:00
|
|
|
|
2017-11-18 03:30:07 +01:00
|
|
|
<form method="post" class="form-horizontal" action="{{ url('zerver.views.auth.password_reset') }}">
|
2017-05-01 21:33:41 +02:00
|
|
|
{{ csrf_input }}
|
|
|
|
<div class="new-style">
|
|
|
|
<div class="input-box horizontal moving-label">
|
|
|
|
<div class="inline-block relative">
|
|
|
|
<input id="id_email" class="required" type="text" name="email"
|
2018-04-03 10:07:23 +02:00
|
|
|
value="{% if form.email.value() %}{{ form.email.value() }}{% endif %}"
|
2019-09-13 20:56:51 +02:00
|
|
|
maxlength="100" autofocus required />
|
2017-05-01 21:33:41 +02:00
|
|
|
<label for="id_email" class="">{{ _('Email') }}</label>
|
|
|
|
{% if form.email.errors %}
|
|
|
|
{% for error in form.email.errors %}
|
|
|
|
<div class="alert alert-error">{{ error }}</div>
|
|
|
|
{% endfor %}
|
|
|
|
{% endif %}
|
|
|
|
</div>
|
2018-09-24 10:12:06 +02:00
|
|
|
<button type="submit">{{ _('Send reset link') }}</button>
|
2017-05-01 21:33:41 +02:00
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</form>
|
2019-11-14 00:28:06 +01:00
|
|
|
{% include 'zerver/include/back_to_login_component.html' %}
|
2012-11-05 19:53:16 +01:00
|
|
|
</div>
|
2017-05-01 21:33:41 +02:00
|
|
|
</div>
|
2017-04-20 21:02:56 +02:00
|
|
|
</div>
|
2012-11-05 19:53:16 +01:00
|
|
|
|
|
|
|
|
|
|
|
{% endblock %}
|