-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
75 lines (68 loc) · 2.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
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
<!DOCTYPE html>
<html lang="pl">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Is TGIF time?</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="avris-flags.css">
<link rel="apple-touch-icon" sizes="180x180" href="./icons/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="./icons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="./icons/favicon-16x16.png">
<link rel="manifest" href="./icons/manifest.json">
<link rel="mask-icon" href="./icons/safari-pinned-tab.svg" color="#5bbad5">
<link rel="shortcut icon" href="./icons/favicon.ico">
<meta name="apple-mobile-web-app-title" content="TGIF?">
<meta name="application-name" content="TGIF?">
<meta name="msapplication-config" content="./icons/browserconfig.xml">
<meta name="theme-color" content="#ffffff">
</head>
<body>
<div id="lang">
<span id="lang-string">Choose language</span>:
<button id="GB">
<span class="flag-GB flag-outbound"></span>
</button>
<button id="DE">
<span class="flag-DE flag-outbound"></span>
</button>
<button id="PL">
<span class="flag-PL flag-outbound"></span>
</button>
</div>
<div id="wrapper">
<div id="timing-zone">
<span id="tgif">TGIF in…</span>
<div id="timer">?:??:??:??</div>
<button id="set-time">Want to change hour?</button>
</div>
<div id="question-zone">
<div id="error">Invalid input format</div>
<div id="question-when">
When your TGIF starts?
</div>
<div id="question-input">
<input type="text" name="when-time" id="when-time" placeholder="16:00">
<button id="accept-time">OK</button>
</div>
</div>
</div>
<footer>
<span id="version-string">Version</span> <span id="version">?.?.?</span> |
<span id="powered">countdown powered by</span> <a href="https://momentjs.com/">moment.js</a> |
<span id="flags">flags icons</span>: <a href="https://flags.avris.it/">Avris Flags</a> |
<span id="author">author</span>: <a href="https://wojtekwernicki.eu">Wojtek Wernicki</a> |
<a href="https://facebook.com/WojtekWernickiEU">Facebook</a> /
<a href="https://twitter.com/WojtekWernicki">Twitter</a> /
<a href="https://instagram.com/WojtekWernickiEU">Instagram</a> |
<a href="https://github.com/WojtekWernicki/tgif"><span id="source">source code</span></a> |
<span id="license">license</span>: WTFPL
<div id="cookies">
This page uses Local Storage to store data about when you finish work and which language you use.
</div>
</footer>
<script src="moment.min.js"></script>
<script src="script.js"></script>
</body>
</html>