summaryrefslogtreecommitdiff
path: root/views
diff options
context:
space:
mode:
Diffstat (limited to 'views')
-rw-r--r--views/join.html30
1 files changed, 30 insertions, 0 deletions
diff --git a/views/join.html b/views/join.html
new file mode 100644
index 0000000..1fb341b
--- /dev/null
+++ b/views/join.html
@@ -0,0 +1,30 @@
+{% extends "base.html" %}
+
+{% block head %}
+ <link rel="stylesheet" href="/styles/join.css">
+{% endblock %}
+
+{% block content %}
+ <form method="POST" class="signup">
+ <div class="signup__box">
+ <label class="signup__label" for="name">Name</label>
+ <p>
+ We use your username to connect you with your account later.
+ Please make sure it's spelled correclty.
+ </p>
+ <input class="signup__input" type="text" id="name" placeholder="PoopenFarten43">
+ </div>
+ <div class="signup__box">
+ <label class="signup__label" for="motivation">Motivation</label>
+ <p>
+ Write us a little post about why you'd like to join our guild.
+ Keep in mind that we get a lot of applications for our guild;
+ a simple "i like vidya" won't get you through the golden gates!
+ </p>
+ <textarea class="signup__input" id="motivation" rows="20" placeholder="I would like to join because..."></textarea>
+ </div>
+ <div>
+ <button class="signup__submit" type="submit">Submit</button>
+ </div>
+ </form>
+{% endblock %} \ No newline at end of file