23 lines
702 B
Plaintext
23 lines
702 B
Plaintext
|
extends layout
|
||
|
|
||
|
block stylesheets
|
||
|
link(rel='stylesheet', href='/stylesheets/submit.css')
|
||
|
link(rel='stylesheet', href='/stylesheets/form.css')
|
||
|
|
||
|
block content
|
||
|
div#mobile-view
|
||
|
h1 Add Team
|
||
|
form(action='./submitteam', method='POST')
|
||
|
span(class='form-section')
|
||
|
label Sport
|
||
|
span(class='form-section-input')
|
||
|
select#sport-dropdown(name="sport" class="form-main-dropdown")
|
||
|
span(class='form-section')
|
||
|
label Team name
|
||
|
span(class='form-section-input')
|
||
|
input(type="text", name="name")
|
||
|
span(class='form-section')
|
||
|
button#submit-button(type="submit") Submit
|
||
|
|
||
|
block scripts
|
||
|
script(src='/scripts/manage/team.js' type="module")
|