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/index.pug

37 lines
1.2 KiB
Plaintext
Raw Normal View History

2021-11-22 02:07:44 +00:00
extends layout
block stylesheets
link(rel='stylesheet', href='/stylesheets/index.css')
link(rel='stylesheet', href='/stylesheets/form.css')
block content
div#mobile-view
h1 Score Tracker
div
span(class='form-section')
label Year
span(class='form-section-input')
select#year-dropdown(name="year" class="form-main-dropdown")
span(class='form-section')
label Sport
span(class='form-section-input')
select#sport-dropdown(name="sport" class="form-main-dropdown")
select#gender-dropdown(name="gender")
select#division-dropdown(name="division")
span(class='form-section')
label Team
span(class='form-section-input')
select#team-dropdown(name="team" class="form-main-dropdown")
span(class='form-section')
div
2021-11-22 04:59:07 +00:00
h2#games-table-header
table
colgroup
col#score-column(span="1")
col#opponent-column(span="1")
col#date-column(span="1")
tbody#games-table
2021-11-22 02:07:44 +00:00
block scripts
script(src='/scripts/index.js' type="module")