-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
62 lines (47 loc) · 2.1 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
<!DOCTYPE html>
<html>
<head>
<title>Compassion Tool - Relative Time</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" type="text/css" href="main.css" />
</head>
<body>
<div class="container">
<h1>Relative Time</h1>
<small>Copy the URL to share the comparison below.</small>
<hr/>
<fieldset class="age-box">
<div class="age">
<label>My Age</label>
<input id="my-age" name="my-age" type="number" value="30" step="0.1" size="2" placeholder="in years" title="in years" oninput="update()" />
</div>
<div class="age">
<label>Their Age</label>
<input id="their-age" name="their-age" type="number" value="3" step="0.1" size="2" placeholder="in years" title="in years" oninput="update()" />
</div>
</fieldset>
<hr/>
<fieldset class="time-box">
<input id="number" name="number" type="number" value="1" step="0.1" size="2" oninput="update()" />
<select id="unit" name="unit" oninput="update()" >
<option value="seconds">Seconds</option>
<option value="minutes">Minutes</option>
<option value="hours">Hours</option>
<option value="days">Days</option>
<option value="weeks" selected>Weeks</option>
<option value="months">Months</option>
<option value="years">Years</option>
</select>
</fieldset>
<h2 class="message">for me feels like</h2>
<p id="relative-time-span" class="message">(loading)</p>
<h2 class="message">for them.</h2>
<hr/>
<footer>
<small><a href="https://github.com/AmasaDelano/relative-time" target="_blank">Code</a> for this page, by Alex Leone, is licensed under <a href="https://www.gnu.org/licenses/gpl-3.0.txt" target="_blank">GNU GPL 3.0</a>.</small>
</footer>
</div>
<script src="main.js"></script>
</body>
</html>