diff options
author | Linnnus <[email protected]> | 2024-04-01 13:53:04 +0200 |
---|---|---|
committer | Linnnus <[email protected]> | 2024-04-01 13:54:58 +0200 |
commit | ad06180a533d5ad91d737d63066efb2437f2fe0d (patch) | |
tree | bfaab58cf041d833f0f5e0cc4673a61ae4d71363 | |
parent | bb41850a2e91d43d79e4e59459b332f224e02bb6 (diff) |
Add prefferred role to application form
As noted in the notes added in bb41850 each user generally plays as a
single role. This is relevant for the application process.
-rw-r--r-- | views/join.html | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/views/join.html b/views/join.html index 1fb341b..3225210 100644 --- a/views/join.html +++ b/views/join.html @@ -15,6 +15,19 @@ <input class="signup__input" type="text" id="name" placeholder="PoopenFarten43"> </div> <div class="signup__box"> + <label class="signup__label" for="preferredRole">Preferred role</label> + <p> + We are always looking ot balance our guild. + As such it's important for us to know which role you like to play as. + Please feel free to elaborate in text box below. + </p> + <select class="signup__input" id="preferredRole"> + <option value="dps">DPS</option> + <option value="tank">Tank</option> + <option value="healer">Healer</option> + </select> + </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. |