forked from blockcypher/explorer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathunconfirmed_email.html
44 lines (34 loc) · 1.02 KB
/
unconfirmed_email.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
41
42
43
44
{% extends "base.html" %}
{% load i18n %}
{% load humanize %}
{% load btc_formats %}
{% load static %}
{% block title %}
Please Confirm Your Email Address
{% endblock title %}
{% block page_header %}
<h1>Confirm Your Email Address to Receive Notifications</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 email.
</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>
{% endblock content %}