2021-11-26 19:37:09 +00:00
|
|
|
extends ../layout
|
2021-11-23 02:17:23 +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:27 +00:00
|
|
|
span#loading-message Loading...
|
2021-11-23 06:45:24 +00:00
|
|
|
form#submission-form(action='./team', method='POST')
|
2021-11-23 02:17:23 +00:00
|
|
|
span(class='form-section')
|
|
|
|
label Sport
|
|
|
|
span(class='form-section-input')
|
2021-11-23 06:45:24 +00:00
|
|
|
select#sport-dropdown(name="sport" class="form-main-dropdown" disabled)
|
2021-11-23 02:17:23 +00:00
|
|
|
span(class='form-section')
|
|
|
|
label Team name
|
|
|
|
span(class='form-section-input')
|
2021-11-23 06:45:24 +00:00
|
|
|
input#name-textbox(type="text", name="name" disabled)
|
2021-11-27 00:03:09 +00:00
|
|
|
.error #{message}
|
2021-11-23 02:17:23 +00:00
|
|
|
span(class='form-section')
|
2021-11-23 06:45:24 +00:00
|
|
|
button#submit-button(type="submit" disabled) Submit
|
|
|
|
span(class='form-section')
|
|
|
|
button#delete-button(disabled) Delete
|
2021-11-23 02:17:23 +00:00
|
|
|
|
|
|
|
block scripts
|
|
|
|
script(src='/scripts/manage/team.js' type="module")
|