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-23 01:04:36 +00:00
|
|
|
extends layout
|
|
|
|
|
|
|
|
block stylesheets
|
|
|
|
link(rel='stylesheet', href='/stylesheets/submit.css')
|
|
|
|
link(rel='stylesheet', href='/stylesheets/form.css')
|
|
|
|
|
|
|
|
block content
|
|
|
|
div#mobile-view
|
2021-11-23 02:40:33 +00:00
|
|
|
h1 #{title}
|
2021-11-23 01:04:36 +00:00
|
|
|
form(action='./submitseason', 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/season.js' type="module")
|