From 1104cb4db280fb29cee3830b3ae29ec7232146f2 Mon Sep 17 00:00:00 2001 From: realaravinth Date: Fri, 10 Jun 2022 22:28:59 +0530 Subject: [PATCH] feat: verification and pending verification templates --- .../accounts/auth/verification-pending.html | 21 +++++++++++++++++++ accounts/templates/accounts/auth/verify.html | 20 ++++++++++++++++++ 2 files changed, 41 insertions(+) create mode 100644 accounts/templates/accounts/auth/verification-pending.html create mode 100644 accounts/templates/accounts/auth/verify.html diff --git a/accounts/templates/accounts/auth/verification-pending.html b/accounts/templates/accounts/auth/verification-pending.html new file mode 100644 index 0000000..c31622d --- /dev/null +++ b/accounts/templates/accounts/auth/verification-pending.html @@ -0,0 +1,21 @@ +{% extends "common/components/base.html" %} +{% block title %} Confirm Account | Hostea Dashbaord{% endblock %} +{% block nav %} {% include "common/components/nav/pub.html" %} {% endblock %} +{% block main %} +
+

Verify account

+

Please verify your email address: {{email}}

+
+ {% include "common/components/error.html" %} {% csrf_token %} +
+ +
+ +
+
+{% endblock %} diff --git a/accounts/templates/accounts/auth/verify.html b/accounts/templates/accounts/auth/verify.html new file mode 100644 index 0000000..36f5ee3 --- /dev/null +++ b/accounts/templates/accounts/auth/verify.html @@ -0,0 +1,20 @@ +{% extends "common/components/base.html" %} +{% block title %} Confirm Account | Hostea Dashbaord{% endblock %} +{% block nav %} {% include "common/components/nav/pub.html" %} {% endblock %} +{% block main %} +
+

Verify account

+
+ {% include "common/components/error.html" %} {% csrf_token %} +

Please verify your account

+
+ +
+
+
+{% endblock %}