aboutsummaryrefslogtreecommitdiffstats
path: root/alphabetlearning/templates/payments
diff options
context:
space:
mode:
Diffstat (limited to 'alphabetlearning/templates/payments')
-rw-r--r--alphabetlearning/templates/payments/verification_failed.html4
-rw-r--r--alphabetlearning/templates/payments/verification_sent.html6
-rw-r--r--alphabetlearning/templates/payments/verification_success.html7
3 files changed, 17 insertions, 0 deletions
diff --git a/alphabetlearning/templates/payments/verification_failed.html b/alphabetlearning/templates/payments/verification_failed.html
new file mode 100644
index 0000000..804320a
--- /dev/null
+++ b/alphabetlearning/templates/payments/verification_failed.html
@@ -0,0 +1,4 @@
+{% extends "base.html" %} {% load static %}
+
+<h1>Verification Failed</h1>
+<p>Sorry, this verification link is invalid or has already been used.</p>
diff --git a/alphabetlearning/templates/payments/verification_sent.html b/alphabetlearning/templates/payments/verification_sent.html
new file mode 100644
index 0000000..1de1236
--- /dev/null
+++ b/alphabetlearning/templates/payments/verification_sent.html
@@ -0,0 +1,6 @@
+{% extends "base.html" %} {% load static %} {$ block content $}
+
+<h1>Verification Email Sent</h1>
+<p>Please check your email at {{ email }} to complete your subscription.</p>
+
+{$ endblock content $}
diff --git a/alphabetlearning/templates/payments/verification_success.html b/alphabetlearning/templates/payments/verification_success.html
new file mode 100644
index 0000000..1f8e95a
--- /dev/null
+++ b/alphabetlearning/templates/payments/verification_success.html
@@ -0,0 +1,7 @@
+{% extends "base.html" %} {% load static %}
+
+<h1>Email Verified Successfully</h1>
+<p>
+ Thank you for verifying your email. You have been added to our subscriber
+ list.
+</p>