21 lines
647 B
Plaintext
21 lines
647 B
Plaintext
extends ../layout
|
|
|
|
block stylesheets
|
|
link(rel='stylesheet', href='/stylesheets/submit.css')
|
|
link(rel='stylesheet', href='/stylesheets/form.css')
|
|
|
|
block content
|
|
form#submission-form(action='./sport', method='POST')
|
|
span(class='form-section')
|
|
label Sport name
|
|
span(class='form-section-input')
|
|
input#name-textbox(type="text" name="name" disabled)
|
|
.error #{message}
|
|
span(class='form-section')
|
|
button#submit-button(type="submit" disabled) Submit
|
|
span(class='form-section')
|
|
button#delete-button(disabled) Delete
|
|
|
|
|
|
block scripts
|
|
script(src='/scripts/manage/sport.js' type="module") |