-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
80 lines (72 loc) · 1.86 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
79
80
<html>
<head>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<img src="../images/openscriptIcon.png" alt="openscriptLogo">
<h1>Time manager</h1>
</header>
<main>
<div id="title">
<h2>-- present members --</h2>
</div>
<div class="users">
<div>
<button id="robin-btn">Robin</button>
<button id="diego-btn">Diego</button>
</div>
<div>
<button id="aaron-btn">Aaron</button>
<button id="micael-btn">Micael</button>
</div>
<div>
<button id="next-btn"><img src="../images/arrowOpenscript.png" alt="arrow" id="arrow"></button>
<!-- section timer -->
<section id="timerZone" style="display: none;">
<h2 id="workedTime">Worked time:</h2>
<div class="watch">
<div class="time">
00:00:00
</div>
<div class="controls">
<button id="stop" class="control_btn">Stop</button>
<button id="start" class="control_btn">Start</button>
<button id="save" class="control_btn" onclick="exportTableToCSV('members.csv')">Save</button>
</div>
</div>
</section>
<!-- code form the internet -->
<svg class="checkmark" id="checkmark" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 52 52" style="display: none;">
<circle class="checkmark__circle" cx="26" cy="26" r="25" fill="none" />
<path class="checkmark__check" fill="none" d="M14.1 27.2l7.1 7.2 16.7-16.8" />
</svg>
<!-- NOT VISIBLE TABLE -->
<table border="1" cellspacing="0" cellpadding="10" style="display: none;">
<tr>
<th>User</th>
<th>Time spent</th>
</tr>
<tr>
<td>Robin</td>
<td>3</td>
</tr>
<tr>
<td>Diego</td>
<td>3</td>
</tr>
<tr>
<td>Aaron</td>
<td>3</td>
</tr>
<tr>
<td>Micael</td>
<td>3</td>
</tr>
</table>
</main>
<script src="script.js"></script>
</body>
<footer id="present-members">
</footer>
</html>