-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
32 lines (29 loc) · 1.16 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
<!DOCTYPE html>
<html lang="en-US">
<head>
<script type="text/javascript" src="/assets/js/countdown.js"></script>
<script type="text/javascript" src="/assets/js/valid.js"></script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/assets/css/style.css?v=">
</head>
<body>
<section class="page-header">
<h1 id="countdown" class="project-name"></h1>
<h2 id="date" class="project-tagline"></h2>
<script>
var targetDate = "Mar 24, 2021 17:24";
runCountdown(targetDate);
</script>
</section>
<!-- Unsecure, do like here (https://stackoverflow.com/questions/42180103/how-do-i-make-a-simple-password-page) -->
<section class="main-content">
<form accept-charset="UTF-8" action="/further.html" onsubmit="return validate_keyword()">
<div class="form-group">
<label for="keyword" required="required">Keyword</label>
<input name="keyword" class="form-control" id="keyword_form" placeholder="Where are my flowers?">
</div>
</form>
</section>
</body>
</html>