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:47:40 +00:00
|
|
|
|
|
|
|
block stylesheets
|
|
|
|
link(rel='stylesheet', href='/stylesheets/submit.css')
|
|
|
|
link(rel='stylesheet', href='/stylesheets/form.css')
|
|
|
|
|
|
|
|
block content
|
2022-03-09 17:56:35 +00:00
|
|
|
span#loading-message Loading...
|
2021-11-23 05:03:02 +00:00
|
|
|
form#submission-form(action='./sport', method='POST')
|
2021-11-23 01:47:40 +00:00
|
|
|
span(class='form-section')
|
|
|
|
label Sport name
|
|
|
|
span(class='form-section-input')
|
2021-11-23 05:03:02 +00:00
|
|
|
input#name-textbox(type="text" name="name" disabled)
|
2021-11-26 23:38:46 +00:00
|
|
|
.error #{message}
|
2021-11-23 01:47:40 +00:00
|
|
|
span(class='form-section')
|
2021-11-23 05:03:02 +00:00
|
|
|
button#submit-button(type="submit" disabled) Submit
|
|
|
|
span(class='form-section')
|
|
|
|
button#delete-button(disabled) Delete
|
|
|
|
|
2021-11-23 01:47:40 +00:00
|
|
|
|
|
|
|
block scripts
|
2021-11-23 05:03:02 +00:00
|
|
|
script(src='/scripts/manage/sport.js' type="module")
|