diff options
author | Jannick <[email protected]> | 2024-04-29 11:31:51 +0200 |
---|---|---|
committer | Jannick <[email protected]> | 2024-04-29 11:31:51 +0200 |
commit | 22b0b52f8f98a68b08111802c4edcb30b692bcb0 (patch) | |
tree | 4924df0312b5f4fb78796b080c35039ec5870732 /views/join.html | |
parent | 51ee6bae10c4a01b56f063c133a18c380ff3d23e (diff) | |
parent | 692a7fc3a5b4e6c655732c1b29274b66bea515d9 (diff) |
Merge branch 'main' of github.com:linnnus/blind-guild
Diffstat (limited to 'views/join.html')
-rw-r--r-- | views/join.html | 57 |
1 files changed, 0 insertions, 57 deletions
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 %} - <link rel="stylesheet" href="/styles/join.css"> - <script type="module"> - var dropdown = document.getElementById("preferredRole"); - document.getElementById("applicationForm").addEventListener("submit", (event) => { - if ( dropdown.value === "invalid" ) { - alert("Pick a preferred role."); - event.preventDefault() - } - }); - </script> -{% endblock %} - -{% block content %} - <form method="POST" class="signup" id="applicationForm"> - <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> - <p> - If your application is accepted, we will accept your in-game guild application. - Please make sure you have supmitted such an application in the game's UI. - </p> - <input class="signup__input" type="text" id="name" name="name" required placeholder="PoopenFarten43" minlength="2" maxlength="12"> - </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 required class="signup__input" id="preferredRole" name="preferredRole"> - <option value="invalid" selected disabled>Choose a preferred role</option> - <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. - 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 required class="signup__input" id="motivation" name="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 |