19 lines
556 B
Plaintext
19 lines
556 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 #{title}
|
|
form(action='./season', method='POST')
|
|
span(class='form-section')
|
|
label Ending year
|
|
span(class='form-section-input')
|
|
input(type="number", name="year", value=currentYear)
|
|
span(class='form-section')
|
|
button#submit-button(type="submit") Submit
|
|
|
|
block scripts
|
|
script(src='/scripts/manage/season.js' type="module") |