first commit

This commit is contained in:
2023-08-17 06:51:08 -05:00
commit 469c298753
33 changed files with 13203 additions and 0 deletions

29
views/home.pug Normal file
View File

@@ -0,0 +1,29 @@
head
meta(charset='utf-8')
meta(name='viewport' content='width=device-width, initial-scale=1')
title BenchCoach - Home
link(rel='stylesheet' href='/css/bootstrap.min.css')
link(rel='stylesheet' href='/css/project.css')
body.bg-light
.container
.row
.text-center.my-2
.row
h1
img.mx-auto(src="media/benchcoach.svg" style="width: 2.5em;")
.row
h1
strong
| Welcome to
span.text-nowrap BenchCoach
.text-center.lead.fst-italic.fw-light
| An assistant coach for TeamSnap
.row
.col.text-center
if req.user
ul.list-group
each team in teams
a(class='team list-group-item' href=`/${team.id}`) #{team.name} [#{team.seasonName}]
else
a.btn.btn-outline-primary(href="login")
| Login