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:47:40 +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 05:03:02 +00:00
|
|
|
h1#main-header Add Sport
|
|
|
|
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-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")
|