-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
78 lines (76 loc) · 2.31 KB
/
index.html
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script
src="https://kit.fontawesome.com/8d2e542507.js"
crossorigin="anonymous"
></script>
<link
rel="stylesheet"
href="https://bootswatch.com/5/yeti/bootstrap.min.css"
/>
<title>JonsChallenges</title>
</head>
<body>
<div class="container mt-4">
<span class="mt-4">
Submit bugs and feature requests
<a href="https://github.com/jameswwirth/jonschallenges/issues">here</a>
</span>
<h1 class="display-4 mt-4">
<i class="fas fa-medal text-primary"></i>
Jons
<span class="text-primary">Challenges</span>
</h1>
<h3 class="mt-4">
<span class=""
><i class="fas fa-running text-primary"></i> Running Challenges</span
>
</h3>
<div id="leaderBoard" class="mb-4">
<li>1km</li>
<li>2km</li>
<li>3km</li>
</div>
<form id="activity-form">
<div class="form-group">
<label for="challenge" class="form-label">Select Challenge</label>
<select class="form-select" id="challenge">
<option>1km Run</option>
<option>2km Run</option>
<option>3km Run</option>
</select>
</div>
<div class="form-group">
<label for="competitor">Competitor</label>
<input id="competitor" type="text" class="form-control" />
</div>
<div class="form-group">
<label for="time">Time</label>
<input id="time" type="text" class="form-control" />
</div>
<div class="d-grid gap-2">
<button class="btn btn-primary mt-2" type="submit">
Submit Activity
</button>
</div>
</form>
<table class="table table-hover mt-3">
<thead>
<tr>
<th scope="col">ID</th>
<th scope="col">Challenge</th>
<th scope="col">Competitor</th>
<th scope="col">Time</th>
<th scope="col"></th>
</tr>
</thead>
<tbody id="activity-list"></tbody>
</table>
</div>
<script src="app.js"></script>
</body>
</html>