From c0d2b9eb7e2b65b582039aafdca765fe32acf81e Mon Sep 17 00:00:00 2001 From: Linnnus Date: Sat, 27 Apr 2024 21:21:51 +0200 Subject: Flesh out 'join' user flow This commit splits the user flow when sending in an application to join the guild into three staged: 1. Intro text 2. HTML form 3. Form submission feedback (aka. "yay it went through") --- views/base.html | 2 +- views/join.html | 57 ------------------------------------------------ views/join_form.html | 58 +++++++++++++++++++++++++++++++++++++++++++++++++ views/join_intro.html | 23 ++++++++++++++++++++ views/join_success.html | 18 +++++++++++++++ 5 files changed, 100 insertions(+), 58 deletions(-) delete mode 100644 views/join.html create mode 100644 views/join_form.html create mode 100644 views/join_intro.html create mode 100644 views/join_success.html (limited to 'views') diff --git a/views/base.html b/views/base.html index 9133090..cba0c5d 100644 --- a/views/base.html +++ b/views/base.html @@ -14,7 +14,7 @@ diff --git a/views/join.html b/views/join.html deleted file mode 100644 index 784019c..0000000 --- a/views/join.html +++ /dev/null @@ -1,57 +0,0 @@ -{% extends "base.html" %} - -{% block head %} - - -{% endblock %} - -{% block content %} -
- - - -
- -
-
-{% endblock %} \ No newline at end of file diff --git a/views/join_form.html b/views/join_form.html new file mode 100644 index 0000000..0e06399 --- /dev/null +++ b/views/join_form.html @@ -0,0 +1,58 @@ +{% extends "base.html" %} + +{% block head %} + + + +{% endblock %} + +{% block content %} +
+ + + +
+ +
+
+{% endblock %} diff --git a/views/join_intro.html b/views/join_intro.html new file mode 100644 index 0000000..9ed93d5 --- /dev/null +++ b/views/join_intro.html @@ -0,0 +1,23 @@ +{% extends "base.html" %} + +{% block head %} + +{% endblock %} + +{% block content %} +

Joining the Blind Guild

+

+ So you want to join the Blind Guild. + Be warned, + we are a very exclusive club + and we aren't actively seeking new members. + However, if you're a skilled player + and feel like you could help elevate the Blind Guild, + feel free to send us an application! +

+

+ Click the button below to go to the form + where you can submit your application. +

+ Apply +{% endblock %} diff --git a/views/join_success.html b/views/join_success.html new file mode 100644 index 0000000..7e9dace --- /dev/null +++ b/views/join_success.html @@ -0,0 +1,18 @@ +{% extends "base.html" %} + +{% block head %} + +{% endblock %} + +{% block content %} +

Application recieved

+

+ Your application was submitted successfully! + We'll review it and decide if you're cool enough to join our exclusive club. + Please note that it may take a few days for us to get to your application. +

+

+ If you're accepted into our elite gang of high-tier gamers, + you'll receive an in-game invite to the Blind Guild. +

+{% endblock %} -- cgit v1.2.3