-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (39 loc) · 1.77 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>YouTime</title>
<link rel="stylesheet" type="text/css" href="src/assets/output.css">
<script src="https://kit.fontawesome.com/e146579808.js" crossorigin="anonymous"></script>
</head>
<body>
<div class="flex h-screen">
<div class="m-auto">
<div id="main">
<div id="configuration-wrapper"></div>
<div class="flex items-center justify-center ">
<img src="src/assets/logo.png">
</div>
<h1 class="text-6xl flex items-center justify-center text-purple-600"><time>00:00:00</time></h1>
<div id="more"></div>
<button id="start" class="bg-purple-400 hover:bg-purple-600 text-white font-bold py-2 px-4 rounded">
Commencer
</button>
<button id="stop" class="bg-purple-400 hover:bg-purple-600 text-white font-bold py-2 px-4 rounded">
Arrêter
</button>
<button id="clear" class="bg-purple-400 hover:bg-purple-600 text-white font-bold py-2 px-4 rounded">
Mettre à zéro
</button>
<button id="send" class="bg-purple-500 hover:bg-purple-700 text-white font-bold py-2 px-4 rounded">
Envoyer
</button>
<input placeholder="Commentaire" class="bg-gray-200 text-purple-600 appearance-none border-2 border-gray-200 rounded w-full py-2 px-4 text-gray-700 leading-tight focus:outline-none focus:bg-white focus:border-purple-500"
id="text-timer" type="text">
</div>
</div>
</div>
<!-- You can also require other files to run in this process -->
<script src="./dist/renderer.js"></script>
</body>
</html>