aboutsummaryrefslogtreecommitdiff
path: root/app/templates/emails/verify.html
diff options
context:
space:
mode:
authorrubenwardy <rw@rubenwardy.com>2019-01-04 19:17:04 +0000
committerrubenwardy <rw@rubenwardy.com>2019-01-04 19:17:04 +0000
commit014370ea067d3abaef1eddde15bd3fa3fbafd2a3 (patch)
tree599c2f469650a0dc035be497525048a4936849fc /app/templates/emails/verify.html
parentfbf374ff5d72722d14f07cc4ee71a5182212db94 (diff)
downloadcheatdb-014370ea067d3abaef1eddde15bd3fa3fbafd2a3.tar.xz
Add email template
Diffstat (limited to 'app/templates/emails/verify.html')
-rw-r--r--app/templates/emails/verify.html22
1 files changed, 16 insertions, 6 deletions
diff --git a/app/templates/emails/verify.html b/app/templates/emails/verify.html
index a08b174..38d488b 100644
--- a/app/templates/emails/verify.html
+++ b/app/templates/emails/verify.html
@@ -1,4 +1,7 @@
-<h1>Hello!</h1>
+{% extends "emails/base.html" %}
+
+{% block content %}
+<h2 style="margin-top: 0;">Hello!</h2>
<p>
This email has been sent to you because someone (hopefully you)
@@ -6,12 +9,19 @@
</p>
<p>
- If this was you, then please click this link to verify the address:
- <a href="{{ url_for('verify_email_page', token=token, _external=True) }}">
- {{ url_for('verify_email_page', token=token, _external=True) }}
- </a>
+ If it wasn't you, then just delete this email.
</p>
<p>
- If it wasn't you, then just delete this email.
+ If this was you, then please click this link to verify the address:
</p>
+
+<a class="btn" href="{{ url_for('verify_email_page', token=token, _external=True) }}">
+ Confirm Email Address
+</a>
+
+<p style="font-size: 80%;">
+ Or paste this into your browser: {{ url_for('verify_email_page', token=token, _external=True) }}
+<p>
+
+{% endblock %}