aboutsummaryrefslogtreecommitdiff
path: root/services/users/templates/verification_email.html
diff options
context:
space:
mode:
Diffstat (limited to 'services/users/templates/verification_email.html')
-rw-r--r--services/users/templates/verification_email.html26
1 files changed, 26 insertions, 0 deletions
diff --git a/services/users/templates/verification_email.html b/services/users/templates/verification_email.html
new file mode 100644
index 00000000..06e91a79
--- /dev/null
+++ b/services/users/templates/verification_email.html
@@ -0,0 +1,26 @@
+<!DOCTYPE html>
+<html lang="en">
+ <head>
+ <meta charset="UTF-8" />
+ <meta http-equiv="X-UA-Compatible" content="IE=edge" />
+ <meta name="viewport" content="width=device-width, initial-scale=1.0" />
+ <title>Verify Email</title>
+ </head>
+ <body>
+ <h1>Verify Your New Account</h1>
+ <p>Hi {{ user }},</p>
+ <p>
+ Thanks for registering an account on {{ site_name }}. To verify your email
+ address, please click the link below.
+ </p>
+ <a
+ href="{{ protocol }}{{ domain }}{% url 'users:changeemail' 'verifyemail' uid token %}"
+ >Verify Email</a
+ >
+ <p>If the above link does not work, copy and paste the URL below into your browser:</p>
+ <a href="{{ protocol }}{{ domain }}{% url 'users:changeemail' 'verifyemail' uid token %}">{{ protocol }}{{ domain }}{% url 'users:changeemail' 'verifyemail' uid token %}</a>
+ <p>Please ignore this email if you did not make this request.</p>
+ <p>Thanks,</p>
+ <p>Bobby from {{ site_name }}</p>
+ </body>
+</html>