-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathauth-lock-screen.html
More file actions
89 lines (71 loc) · 4.24 KB
/
Copy pathauth-lock-screen.html
File metadata and controls
89 lines (71 loc) · 4.24 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 lang="en">
<head>
<meta charset="utf-8" />
<title>Lock screen | Chatvia - Responsive Bootstrap 4 Chat App</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta content="Responsive Bootstrap 4 Chat App" name="description" />
<meta content="Themesbrand" name="author" />
<!-- App favicon -->
<link rel="shortcut icon" href="assets/images/favicon.ico">
<!-- Bootstrap Css -->
<link href="assets/css/bootstrap.min.css" id="bootstrap-style" rel="stylesheet" type="text/css" />
<!-- Icons Css -->
<link href="assets/css/icons.min.css" rel="stylesheet" type="text/css" />
<!-- App Css-->
<link href="assets/css/app.min.css" id="app-style" rel="stylesheet" type="text/css" />
</head>
<body>
<div class="account-pages my-5 pt-sm-5">
<div class="container">
<div class="row justify-content-center">
<div class="col-md-8 col-lg-6 col-xl-5">
<div class="text-center mb-4">
<a href="index.html" class="auth-logo mb-5 d-block">
<img src="assets/images/logo-dark.png" alt="" height="30" class="logo logo-dark">
<img src="assets/images/logo-light.png" alt="" height="30" class="logo logo-light">
</a>
<h4>Lock screen</h4>
<p class="text-muted mb-4">Enter your password to unlock the screen!</p>
</div>
<div class="card">
<div class="card-body p-4">
<div class="p-3">
<div class="user-thumb text-center mb-4">
<img src="assets/images/users/avatar-1.jpg" class="rounded-circle img-thumbnail avatar-lg" alt="thumbnail">
<h5 class="font-size-15 mt-3">Patricia Smith</h5>
</div>
<form action="index.html">
<div class="mb-4">
<label class="form-label">Password</label>
<div class="input-group bg-light-subtle rounded-3 mb-3">
<span class="input-group-text text-muted" id="basic-addon2">
<i class="ri-lock-2-line"></i>
</span>
<input type="password" class="form-control form-control-lg bg-light-subtle" placeholder="Enter Password" aria-label="Enter Password" aria-describedby="basic-addon2">
</div>
</div>
<div class="d-grid">
<button class="btn btn-primary waves-effect waves-light" type="submit">Unlock</button>
</div>
</form>
</div>
</div>
</div>
<div class="mt-5 text-center">
<p>Not you ? return <a href="auth-login.html" class="fw-medium text-primary"> Signin </a> </p>
<p>© <script>document.write(new Date().getFullYear())</script> Chatvia. Crafted with <i class="mdi mdi-heart text-danger"></i> by Themesbrand</p>
</div>
</div>
</div>
</div>
</div>
<!-- end account-pages -->
<!-- JAVASCRIPT -->
<script src="assets/libs/jquery/jquery.min.js"></script>
<script src="assets/libs/bootstrap/js/bootstrap.bundle.min.js"></script>
<script src="assets/libs/simplebar/simplebar.min.js"></script>
<script src="assets/libs/node-waves/waves.min.js"></script>
<script src="assets/js/app.js"></script>
</body>
</html>