forked from blockcypher/explorer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfirm_pw_reset.html
40 lines (31 loc) · 1015 Bytes
/
confirm_pw_reset.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{% extends "base.html" %}
{% load i18n %}
{% load staticfiles %}
{% block title %}{% trans "Check Your Email" %}{% endblock title %}
{% block page_header %}
<h1>{% trans "Check Your Email to Reset Your Password" %}</h1>
{% endblock page_header %}
{% block content %}
<div class="container">
<div class="section">
<div class="row">
<p>
Please check your email
(<b>{{ user.email }}</b>)
and click the link to confirm your subscription.
</p>
<p>
<a class="btn btn-default" data-toggle="collapse" data-target="#viewdetails">Didn't get the email?</a>
</p>
<p class="collapse" id="viewdetails">
Please wait one minute and then check your spam folder for a message from <b>[email protected]</b>.
If it still hasn't arrived, please
<a href="mailto:[email protected]">contact us</a>
so we can fix it.
Sorry about that!
</p>
</div>
</div>
</div>
</div>
{% endblock content %}