-
Notifications
You must be signed in to change notification settings - Fork 8
/
page-lock-screen.html
51 lines (47 loc) · 2.06 KB
/
page-lock-screen.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
<!DOCTYPE html>
<html lang="en" class="h-100">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>Focus - Bootstrap Admin Dashboard </title>
<!-- Favicon icon -->
<link rel="icon" type="image/png" sizes="16x16" href="./images/favicon.png">
<link href="./css/style.css" rel="stylesheet">
</head>
<body class="h-100">
<div class="authincation h-100">
<div class="container-fluid h-100">
<div class="row justify-content-center h-100 align-items-center">
<div class="col-md-6">
<div class="authincation-content">
<div class="row no-gutters">
<div class="col-xl-12">
<div class="auth-form">
<h4 class="text-center mb-4">Account Locked</h4>
<form action="index.html">
<div class="form-group">
<label><strong>Password</strong></label>
<input type="password" class="form-control" value="Password">
</div>
<div class="text-center">
<button type="submit" class="btn btn-primary btn-block">Unlock</button>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- #/ container-fluid -->
<!-- Common JS -->
<script src="./vendor/global/global.min.js"></script>
<!-- Custom script -->
<script src="./vendor/quixnav/quixnav.min.js"></script>
<script src="./js/quixnav-init.js"></script>
<script src="./js/custom.min.js"></script>
</body>
</html>