-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
64 lines (55 loc) · 2.41 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
<!DOCTYPE html>
<html lang="en-GB">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Dom's group-timer, individual-stopwatch</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" media="screen" href="main.css" />
</head>
<body>
<noscript>
<p id="noscript-warning" class="notice">Please enable JavaScript!</p>
</noscript>
<h1>Group Timer (countdown and stopwatch)</h1>
<section id="notice-area">
</section>
<section id="timer-stopwatch-area">
<div id="timer" class="display-flex hidden">
<div>
<span id="main-timer-display">0:00</span>
</div>
<button id="main-timer-start-btn">Start main timer</button>
</div>
<div id="stopwatch-area"></div>
</section>
</div>
<section id="welcome">
<p id="welcome-msg">
Welcome! Please fill in the form below to get started.
<br>
Instructions can be found at the bottom of this page.
</p>
<form id="first-form">
<p>Number of people presenting:</p>
<input type="number" name="number-of-people" placeholder="Integers only" value="4" required>
<br>
<p>Total time (minutes):</p>
<input type="number" name="time-minutes" placeholder="Minutes" value="12" required>
<br>
<p>Names (unique, for now, and separated by commas).</p>
<input type="text" name="names" placeholder="names pls" value="Person 1, Person 2, Person 3, Person 4" required>
<input type="submit" value="Submit!" id="submit-btn-1">
</form>
</section>
<section id="instructions">
<h2>Instructions</h2>
<p>
Fill in the form above with the number of people presenting, the total time of the presentation (<i>not</i> the time per person), and the names of each person.
<br>
You will then be presented with a countdown timer (click or use space bar to start/pause) and 'stopwatches' for each presenter (click or use numbers 1-9, ordered from left/top to right/bottom, to select which person is talking and to tally up their total talking/presenting time).
</p>
</section>
<script src="script.js" type="application/javascript"></script>
</body>
</html>