This repository has been archived on 2024-04-05. You can view files and clone it, but cannot push or open issues/pull-requests.
score-tracker/views/manage/addseason.pug

18 lines
573 B
Plaintext

extends ../layout
block stylesheets
link(rel='stylesheet', href='/stylesheets/submit.css')
link(rel='stylesheet', href='/stylesheets/form.css')
block content
form(action='./season', method='POST')
span(class='form-section')
label Ending year
span(class='form-section-input')
input#season-textbox(type="number", name="year", value=currentYear)
.error #{message}
span(class='form-section')
button#submit-button(type="submit" disabled) Submit
block scripts
script(src='/scripts/manage/season.js' type="module")