-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpage-lockscreen.html
More file actions
50 lines (47 loc) · 1.87 KB
/
page-lockscreen.html
File metadata and controls
50 lines (47 loc) · 1.87 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
<!doctype html>
<html lang="en" class="fullscreen-bg">
<head>
<title>Lockscreen</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge, chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
<!-- VENDOR CSS -->
<link rel="stylesheet" href="assets/vendor/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="assets/vendor/font-awesome/css/font-awesome.min.css">
<!-- MAIN CSS -->
<link rel="stylesheet" href="assets/css/main.css">
<!-- FOR DEMO PURPOSES ONLY. You should remove this in your project -->
<link rel="stylesheet" href="assets/css/demo.css">
<!-- GOOGLE FONTS -->
<link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,600,700" rel="stylesheet">
<!-- ICONS -->
<link rel="apple-touch-icon" sizes="76x76" href="assets/img/apple-icon.png">
<link rel="icon" type="image/png" sizes="96x96" href="assets/img/favicon.png">
</head>
<body>
<!-- WRAPPER -->
<div id="wrapper">
<div class="vertical-align-wrap">
<div class="vertical-align-middle">
<div class="auth-box lockscreen clearfix">
<div class="content">
<h1 class="sr-only">DiffDash - Unique Admin Dashboard Template</h1>
<div class="logo text-center"><img src="assets/img/logo.png" alt="DiffDash"></div>
<div class="user text-center">
<img src="assets/img/user-small.png" class="img-circle" alt="Avatar">
<h2 class="name">Austin Hoffman</h2>
</div>
<form action="index.html">
<div class="input-group">
<input type="password" class="form-control" placeholder="Enter your password ...">
<span class="input-group-btn"><button type="submit" class="btn btn-primary"><i class="fa fa-arrow-right"></i></button></span>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
<!-- END WRAPPER -->
</body>
</html>