-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
34 lines (34 loc) · 1.8 KB
/
popup.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
<html>
<head>
<meta name="viewport" content="width=device-width,initial-scale=1">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
</head>
<body>
<div class="container m-3">
<div id="alert-placeholder"></div>
<form id="workout-entry-form">
<div class="form-check">
<input type="checkbox" name="workout-type" value="badminton" id="badminton" class="form-check-input">
<label for="badminton" class="form-check-label">Badminton</label>
</div>
<div class="form-check">
<input type="checkbox" name="workout-type" value="swimming" id="swimming" class="form-check-input">
<label for="swimming" class="form-check-label">Swimming</label>
</div>
<div class="form-check">
<input type="checkbox" name="workout-type" value="walking" id="walking" class="form-check-input">
<label for="walking" class="form-check-label">Walking</label>
</div>
<div class="form-check">
<input type="checkbox" name="workout-type" value="cricket" id="cricket" class="form-check-input">
<label for="cricket" class="form-check-label">Cricket</label>
</div>
<div class="mt-3 mb-3">
<input type="date" id="date-picker" name="date-picker">
</div>
<button type="submit" class="btn btn-primary">Submit</button>
</form>
</div>
</body>
<script src="scripts/popup.js"></script>
</html>