-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.html
41 lines (36 loc) · 1.57 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.9/css/all.css" integrity="sha384-5SOiIsAziJl6AWe0HWRKTXlfcSHKmYV4RBF18PPJ173Kzn7jzMyFuTtk8JA7QQG1" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="https://stackpath.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="/css/tictac.css">
<title>Tic-Tac</title>
</head>
<body>
<center>
<div class="boxx">
<h1 class="far fa-clock" style="font-size: 200px;"></h1>
<h1 class="headd">Tic-Tac</h1>
<label>Provide a Date in the Past and see.</label><br>
<input type="date" id="date" value="01/01/2018" style="width: 100%;" >
<span class="copyright"></span>By <b><a href="https://github.com/sanix-darker" target="_blank">🐼 Sanix darker</a></b>
</div>
</center>
<script src="js/tictac.min.js"></script>
<!-- <script src="https://rawgit.com/Sanix-Darker/Tic-Tac/master/js/tictac.min.js"></script>-->
<!-- For Dev testings purposes Casual test -->
<script type="text/javascript">
//Local parameters...
var tictac_options = [document.getElementById('date').value];
setInterval(function(){
//console.log(document.getElementById('date').value);
tictac_options = [document.getElementById('date').value];
checkDate(tictac_options);
},2000);
// "MONTH / DAY / YEAR", killCss, killJs, WhiteScreen
// var tictac_options = ['01/01/2019', false, false, false];
// checkDate(null, [true, 'http://127.0.0.1:8081//finalDateForWebSitedash.txt']);
// checkDate(tictac_options);
</script>
</body>
</html>