diff options
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 %} |