This repository has been archived on 2024-04-05. You can view files and clone it, but cannot push or open issues or pull requests.
score-tracker/views/manage.pug
2021-11-26 12:37:09 -07:00

25 lines
No EOL
836 B
Text

extends layout
block stylesheets
link(rel='stylesheet', href='/stylesheets/manage.css')
link(rel='stylesheet', href='/stylesheets/form.css')
block content
div
span(class='form-section')
label Category
span(class='form-section-input')
select#category-dropdown(name="category" class="form-main-dropdown")
option(value="seasons") Seasons
option(value="sports") Sports
option(value="divisions") Divisions
option(value="teams") Teams
option(value="games") Games
option(value="accounts") Accounts
div
h2#table-header
table#items-list
button#add-new-button Add new...
block scripts
script(src='/scripts/manage.js' type="module")