-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
72 lines (69 loc) · 2.58 KB
/
index.html
File metadata and controls
72 lines (69 loc) · 2.58 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Log & Lock cyber attacks</title>
<link href="lib/lib.min.css" rel="stylesheet">
<style>
body {
background-color: #f3f4f5;
}
.mainLogin {
position: absolute;
top: 200px;
height: 500px;
width: 250px;
left: 50%;
top: 45%;
text-align: center;
transform: translate(-50%, -50%);
-webkit-transform: translate(-50%, -50%);
-moz-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
}
.bg-white {
background-color: white;
border-color: #acbfc9;
border-width: 10px;
}
.loggin_wrapper {
margin-top: 20px;
}
</style>
</head>
<body>
<div class="container">
<div class="mainLogin">
<img src="img/logos/log-lock-logo-green.png" width="250"/>
<div class="well bs-component row login_wrapper">
<form class="form-horizontal">
<fieldset>
<div class="form-group">
<div class="col-xs-12">
<input type="email" class="form-control" id="inputEmail" placeholder="Enter you email">
</div>
</div>
<div class="form-group">
<div class="col-xs-12">
<input type="password" class="form-control" id="inputPassword" placeholder="Enter your password">
</div>
</div>
<div class="form-group">
<div class="col-xs-12">
<a href="config/index.html" class="btn btn-lg btn-primary">Sign In</a>
</div>
</div>
</fieldset>
</form>
</div>
</div>
</div>
<script src="lib/lib.min.js"></script>
<script>
$(document).ready(function() {
$.material.init();
});
</script>
</body>
</html>