diff options
| author | rubenwardy <rw@rubenwardy.com> | 2018-05-14 00:40:34 +0100 |
|---|---|---|
| committer | rubenwardy <rw@rubenwardy.com> | 2018-05-14 00:40:34 +0100 |
| commit | 73fa5d11866e1ab36463c3a773b8ca0d3671a709 (patch) | |
| tree | e1e21333d32746d1a3c02d81033f7561779672b0 /app/templates/emails/verify.html | |
| parent | acc48c72620fe9bfdf3c72666d57af7e3c9306d0 (diff) | |
| download | cheatdb-73fa5d11866e1ab36463c3a773b8ca0d3671a709.tar.xz | |
Add email support
Diffstat (limited to 'app/templates/emails/verify.html')
| -rw-r--r-- | app/templates/emails/verify.html | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/app/templates/emails/verify.html b/app/templates/emails/verify.html new file mode 100644 index 0000000..a08b174 --- /dev/null +++ b/app/templates/emails/verify.html @@ -0,0 +1,17 @@ +<h1>Hello!</h1> + +<p> + This email has been sent to you because someone (hopefully you) + has entered your email address as a user's email. +</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> +</p> + +<p> + If it wasn't you, then just delete this email. +</p> |
