-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
85 lines (63 loc) · 1.62 KB
/
index.php
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
76
77
78
79
80
81
82
83
84
85
<?php
require_once 'core/init.php';
?>
<!DOCTYPE html>
<html lang="en" encoding="utf-8">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="initial-scale=1.0, user-scalable=no, width=device-width, maximum-scale=1.0" />
<meta name="author" content="Ushinro">
<meta name="description" content="Schedule events!">
<meta name="keywords" content="">
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/main.css">
<title>Chronical - Schedule Events</title>
</head>
<body>
<header>
<h1>Chronical</h1>
<h4 class="subtitle">Schedule your next event</h4>
</header>
<form action="">
<section>
<h2 class="label">
Date and Time
</h2>
<div class="input">
<input type="datetime-local" id="datetime" name="datetime" value="2010-01-01 12:00:00"/>
</div>
<div class="btn">
<div class="date-btn">
<button onclick="Event.adjustDate(1, 'd');">
+ 1d
</button>
<button onclick="Event.adjustDate(-1, 'd');">
- 1d
</button>
</div>
<div class="time-btn">
<button onclick="Event.adjustTime(15, 'm');">
+ 15m
</button>
<button onclick="Event.adjustTime(-15, 'm');">
- 15m
</button>
</div>
</div>
</section>
<section>
<h2 class="label">
Event Title (Optional)
</h2>
<div class="input">
<input type="text" id="event-title" name="event-title" placeholder="My Event Title"/>
</div>
</section>
<br/>
<button type="submit">
Create Countdown
</button>
</form>
<script src="js/main.js"></script>
</body>
</html>