-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
89 lines (80 loc) · 3.02 KB
/
index.html
File metadata and controls
89 lines (80 loc) · 3.02 KB
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
86
87
88
89
<!DOCTYPE html>
<html>
<head>
<link rel="manifest" href="/manifest.webmanifest">
<!-- CSS -->
<link rel="stylesheet" href="lib/bootstrap-4.5.3.css">
<!-- jQuery and JS bundle w/ Popper.js -->
<script src="lib/jquery-3.5.1.js"></script>
<script src="lib/bootstrap-4.5.3.js"></script>
<title> Slidecast</title>
<style>
body {
background-color: #272b2f!important;
color: white;
}
html,
body {
height: 100%;
width: 100%;
}
.flex-container {
display: flex;
height: 100%;
width: 100%;
align-items: center;
justify-content: center;
align-content: center;
flex-direction: column;
}
.btn {
width: 50%;
margin: 10px;
}
</style>
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<a class="navbar-brand" href="#">SlideCast</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNavDropdown" aria-controls="navbarNavDropdown" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNavDropdown">
<ul class="navbar-nav">
<li class="nav-item active">
<a class="nav-link" href="index.html">Home <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="recorder.html">Recorder</a>
</li>
<li class="nav-item">
<a class="nav-link" href="viewer.html">Viewer</a>
</li>
<li class="nav-item">
<a class="nav-link" href="instructions.html">Instructions</a>
</li>
</ul>
</div>
</nav>
<div class="flex-container">
<h1 style="font-size: 50px; margin: 20px;">Slidecast</h1>
<h5 style="font-size: 20px;">Low Bandwidth Lecture Delivery Platform</h5>
<a role="button" class="btn btn-dark btn-lg btn-block" href="recorder.html">Recorder</a>
<a role="button" class="btn btn-dark btn-lg btn-block" href="viewer.html">Player</a>
<a role="button" class="btn btn-dark btn-lg btn-block" href="instructions.html">Instructions</a>
<br>
<center>
<p> You can install SlideCast by clicking on the Install Button on your address bar in Chrome (at the rightmost end of the address bar click on the plus symbol). <br>SlideCast is supported only on Chrome at the moment. </p>
</center>
</div>
<script>
if ('serviceWorker' in navigator) {
navigator.serviceWorker
.register('/sw.js')
.then(function() {
console.log("Service Worker Registered");
});
}
</script>
</body>
</html>