-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
49 lines (49 loc) · 1.54 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
<!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" />
<link rel="stylesheet" href="style.css" />
<title>Time Log</title>
</head>
<body>
<header>
<h1><a href="javascript:location.reload()">time-log</a></h1>
</header>
<div id="container">
<div id="info">
<div class="input-container">
<input type="text" placeholder="YYYY-MM-DD" id="birthDate" />
<button id="calendar-button">📅</button>
<button id="submit-button">⏏</button>
</div>
</div>
<div id="result" style="display: none">
<div id="label-container">
<p>Weeks lived: <span id="weeks-lived"></span></p>
<p>Until YOU DIE: <span id="weeks-remaining"></span></p>
</div>
<div table="table-wrapper">
<div id="table-container"></div>
</div>
<footer>
<p>have meaningful time with this schedule</p>
<p>
🧑🏻💻 Author:
<a href="https://github.com/Sardor-M" target="_blank">sardor-m</a>
</p>
</footer>
</div>
</div>
<div id="popup" class="popup">
<div class="popup-body">
<span class="exit"> × </span>
<p id="popup-year-progress">s</p>
<p id="popup-week-left"></p>
<div id="popup-table-container"></div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>