-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
74 lines (64 loc) · 1.66 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Wake me up!</title>
<!--
http://getbootstrap.com/getting-started/
Because ain't no one got time for CSS
-->
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<!-- Optional theme -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap-theme.min.css">
<style>
#video {
margin-bottom: 15px;
}
.times {
margin-bottom : 15px;
padding-bottom:15px;
border-bottom: 1px solid #000;
}
.setup {
width:50%;
}
.setup label {
width: 30%;
}
.setup input {
width:69%;
}
.setup button {
width: 49%;
margin-top: 10px;
}
</style>
</head>
<body>
<!-- Keep app hidden until all js has loaded -->
<div id="app" class="container-fluid" style="display:none;">
<div id="video" class="col-xs-12">
vidya gon b here
<!-- Video will be inserted here once user has chosen one and youtube API has loaded it -->
</div>
<div class="times text-center">
<h1>
Now: <span id="current-time"></span> <br/>
<small>
Alarm o' clock: <span id="alarm-time"></span>
</small>
</h1>
</div>
<div class="setup center-block" style="width: 50%;">
<label>Time: </label> <input type="time"name="time"/> <br/>
<label>Youtube Video ID: </label> <input type="text"name="video-id"> <br/>
<button name="update">Update</button>
<button name="test" class="pull-right">Test video</button>
</div>
</div>
<script src="libs/moment.js"></script>
<script src="main.js"></script>
<script src="Video.js"></script>
</body>
</html>