This repository has been archived on 2024-04-05. You can view files and clone it, but cannot push or open issues/pull-requests.
2021-11-26 19:37:09 +00:00
|
|
|
extends ../layout
|
2021-11-23 01:04:36 +00:00
|
|
|
|
|
|
|
block stylesheets
|
|
|
|
link(rel='stylesheet', href='/stylesheets/submit.css')
|
|
|
|
link(rel='stylesheet', href='/stylesheets/form.css')
|
|
|
|
|
|
|
|
block content
|
2021-11-23 21:48:19 +00:00
|
|
|
form(action='./season', method='POST')
|
2021-11-23 01:04:36 +00:00
|
|
|
span(class='form-section')
|
|
|
|
label Ending year
|
|
|
|
span(class='form-section-input')
|
2021-11-26 21:05:06 +00:00
|
|
|
input#season-textbox(type="number", name="year", value=currentYear)
|
2021-11-26 23:34:26 +00:00
|
|
|
.error #{message}
|
2021-11-23 01:04:36 +00:00
|
|
|
span(class='form-section')
|
2021-11-26 21:05:06 +00:00
|
|
|
button#submit-button(type="submit" disabled) Submit
|
2021-11-23 01:04:36 +00:00
|
|
|
|
|
|
|
block scripts
|
2021-11-23 07:49:11 +00:00
|
|
|
script(src='/scripts/manage/season.js' type="module")
|