summaryrefslogtreecommitdiff
path: root/views/join_success.html
diff options
context:
space:
mode:
authorLinnnus <[email protected]>2024-04-27 21:21:51 +0200
committerLinnnus <[email protected]>2024-04-27 21:21:51 +0200
commitc0d2b9eb7e2b65b582039aafdca765fe32acf81e (patch)
tree9aa75621f78fb74c67907856a76d65a299ea66bf /views/join_success.html
parent2bc4e69a4b08dbbd60b1ed711d6cfe825adb0209 (diff)
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")
Diffstat (limited to 'views/join_success.html')
-rw-r--r--views/join_success.html18
1 files changed, 18 insertions, 0 deletions
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 %}
+ <link rel="stylesheet" href="/styles/join_common.css">
+{% endblock %}
+
+{% block content %}
+ <h1>Application recieved</h1>
+ <p>
+ 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.
+ </p>
+ <p>
+ If you're accepted into our elite gang of high-tier gamers,
+ you'll receive an in-game invite to the Blind Guild.
+ </p>
+{% endblock %}