forked from TechieBoy/Volatile
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
46 lines (40 loc) · 1.09 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
<!DOCTYPE html>
<html>
<head>
<title>Index</title>
<link rel="stylesheet" href="css/base.css">
<link rel="stylesheet" type="text/css" href="css/materialize.min.css">
<script type="text/javascript" src="lib/jquery.js"></script>
<script type="text/javascript" src="js/materialize.min.js"></script>
</head>
<body>
<div class="container">
<div class="section" style="margin-top: -20px">
<div class="row">
<div class="col s8">
<h3>UnAadhar</h3>
</div>
</div>
</div>
<ul class="collection with-header" id="allusers" style="text-align: center">
<li class="collection-header">
<div class="row">
<div class="col push-s4">
<h4>
Login?
</h4>
</div>
</div>
</li>
</ul>
<div class="row">
<div class="col push-s8" style="margin-top: 35px">
<a class="waves-effect waves-light btn" href="register.html" target="_self">Add Users</a>
</div>
</div>
</div>
<script type="text/javascript" src="lib/idbkvstore.js"></script>
<script type="text/javascript" src="userconstants.js"></script>
<script src="index.js"></script>
</body>
</html>