30 lines
1006 B
Plaintext
30 lines
1006 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 Division
|
||
|
form(action='./submitdivision', 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 Gender
|
||
|
span(class='form-section-input')
|
||
|
select#gender-dropdown(name="gender" class="form-main-dropdown")
|
||
|
option(value="both") Both
|
||
|
option(value="female") Female
|
||
|
option(value="male") Male
|
||
|
span(class='form-section')
|
||
|
label Division 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/division.js' type="module")
|