-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (40 loc) · 1.22 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
<!-- views/home.ejs -->
<!doctype html>
<html>
<head>
<title>Home</title>
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.0.2/css/bootstrap.min.css">
<!-- load bootstrap css -->
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.min.css">
<!-- load fontawesome -->
<style>
body {
padding-top: 80px;
}
</style>
</head>
<body>
<div class="container">
<div class="jumbotron text-center">
<img src="/media/logo.png" alt="LOGO">
<h2>
<span class="fa fa-lock"></span> Document Viewer Clinet Built On NodeJS</h2>
<a href="/home" class="btn btn-default">
<span class="fa fa-user"></span> Explore Files </a>
</div>
</div>
<footer class="container" style="
position: fixed;
height: 100px;
bottom: 0;
margin-top: 5px;
width: 100%;">
<div class="container-fluid jumbotron text-center">
<h6>
Designed and Developed By
<a href="mailto:[email protected]">Nanda Kishor Jeripothula </a> &
</h6>
</div>
</footer>
</body>
</html>