diff options
author | Linnnus <[email protected]> | 2024-04-29 09:33:20 +0200 |
---|---|---|
committer | Linnnus <[email protected]> | 2024-04-29 09:33:20 +0200 |
commit | 4ea85a09f7ab6932472ecfcf43c82515928df477 (patch) | |
tree | d99431b87b1323e7ab9f4f2310cfe2d932c3d825 /views | |
parent | 3a33268067897b8670d0d39f5fd93e499230fd63 (diff) |
Use oath userid to identify applicants
Diffstat (limited to 'views')
-rw-r--r-- | views/base.html | 1 | ||||
-rw-r--r-- | views/join_form.html | 1 | ||||
-rw-r--r-- | views/join_intro.html | 7 |
3 files changed, 5 insertions, 4 deletions
diff --git a/views/base.html b/views/base.html index cba0c5d..3f65912 100644 --- a/views/base.html +++ b/views/base.html @@ -15,7 +15,6 @@ <li><a class="navbar__location" href="/index.html">About us</a></li> <li><a class="navbar__location" href="/history.html">History</a></li> <li><a class="navbar__location" href="/join_intro.html">Join</a></li> - <li><a class="navbar__location" href="/battle">Log in</a></li> </ul> </header> <main>{% block content %}{% endblock %}</main> diff --git a/views/join_form.html b/views/join_form.html index 0e06399..440c993 100644 --- a/views/join_form.html +++ b/views/join_form.html @@ -16,6 +16,7 @@ {% block content %} <form method="POST" class="signup" id="applicationForm"> + <input type="hidden" name="userId" value="{{ user_id | e }}"> <div class="signup__box"> <label class="signup__label" for="name">Name</label> <p> diff --git a/views/join_intro.html b/views/join_intro.html index 9ed93d5..abea4fd 100644 --- a/views/join_intro.html +++ b/views/join_intro.html @@ -16,8 +16,9 @@ feel free to send us an application! </p> <p> - Click the button below to go to the form - where you can submit your application. + In order to sync up, we'll need you to connect your battle.net account. + Click the button below to sign in with your account. + Then you'll be taken to the application form. </p> - <a class="button" href="/join_form.html">Apply</a> + <a class="button" href="/battle">Sign in</a> {% endblock %} |