blob: a9c451f41a26e545c2dd82c93a5b938dae3e70b8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>🏸Match Up!</title>
<link rel="stylesheet" href="https://unpkg.com/sakura.css/css/sakura.css" type="text/css">
<script src="https://unpkg.com/htmx.org@2.0.0/dist/htmx.min.js"></script>
<style>
button {
height: 50px;
width: 200px;
}
.active {
background-color: #27ae60;
}
.dormant {
background-color: #a93226;
}
.grid-container {
display: grid;
grid-template-columns: auto auto auto;
row-gap: 20px;
column-gap: 20px;
}
hr {
margin-top: 1cm;
}
</style>
</head>
<body>
<header>
<h4>🏸The Smashing Fellows </h4>
</header>
<hr>
<div>
<h2>Games</h2>
<div class="games" hx-get="/game-list" hx-swap="outerHTML" hx-trigger="revealed"></div>
</div>
<button hx-post="/new-games" hx-trigger="click" hx-target=".games" hx-swap="outerHTML"> New Games </button>
<div class="players">
<h2>Courts</h2>
<div hx-get="/court-list" hx-swap="outerHTML" hx-trigger="revealed"></div>
</div>
<hr>
<div class="players">
<h2>Players</h2>
<div hx-get="/player-list" hx-swap="outerHTML" hx-trigger="revealed"></div>
</div>
<hr>
<footer>
Made by <a href="https://karanjayachandra.com/">K. Jayachandra</a> using <a href="https://htmx.org/">HTMX</a> and <a href="https://flask.palletsprojects.com">Flask</a>
</footer>
</body>
</html>
|