2021-11-26 19:37:09 +00:00
|
|
|
extends ../layout
|
2021-11-23 02:11:16 +00:00
|
|
|
|
|
|
|
block stylesheets
|
|
|
|
link(rel='stylesheet', href='/stylesheets/submit.css')
|
|
|
|
link(rel='stylesheet', href='/stylesheets/form.css')
|
|
|
|
|
|
|
|
block content
|
2022-03-09 18:00:17 +00:00
|
|
|
span#loading-message Loading...
|
2021-11-23 06:23:57 +00:00
|
|
|
form#submission-form(action='./division', method='POST')
|
2021-11-23 02:11:16 +00:00
|
|
|
span(class='form-section')
|
|
|
|
label Sport
|
|
|
|
span(class='form-section-input')
|
2021-11-23 06:23:57 +00:00
|
|
|
select#sport-dropdown(name="sport" class="form-main-dropdown" disabled)
|
2021-11-23 02:11:16 +00:00
|
|
|
span(class='form-section')
|
|
|
|
label Gender
|
|
|
|
span(class='form-section-input')
|
2021-11-23 06:23:57 +00:00
|
|
|
select#gender-dropdown(name="gender" class="form-main-dropdown" disabled)
|
2021-11-23 02:11:16 +00:00
|
|
|
option(value="both") Both
|
|
|
|
option(value="female") Female
|
|
|
|
option(value="male") Male
|
|
|
|
span(class='form-section')
|
|
|
|
label Division name
|
|
|
|
span(class='form-section-input')
|
2021-11-23 06:23:57 +00:00
|
|
|
input#name-textbox(type="text", name="name" disabled)
|
2021-11-26 23:46:46 +00:00
|
|
|
.error #{message}
|
2021-11-23 02:11:16 +00:00
|
|
|
span(class='form-section')
|
2021-11-23 06:23:57 +00:00
|
|
|
button#submit-button(type="submit" disabled) Submit
|
|
|
|
span(class='form-section')
|
|
|
|
button#delete-button(disabled) Delete
|
2021-11-23 02:11:16 +00:00
|
|
|
|
|
|
|
block scripts
|
|
|
|
script(src='/scripts/manage/division.js' type="module")
|