AdminLTE/pages/examples/lockscreen.html

69 lines
2.3 KiB
HTML
Raw Normal View History

2014-02-01 16:49:36 +01:00
<!DOCTYPE html>
2020-05-31 13:09:01 +02:00
<html lang="en">
2015-09-19 20:05:54 +02:00
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
2016-10-22 21:32:28 +02:00
<title>AdminLTE 3 | Lockscreen</title>
2015-09-19 20:05:54 +02:00
<!-- Tell the browser to be responsive to screen width -->
2018-03-17 18:07:55 +01:00
<meta name="viewport" content="width=device-width, initial-scale=1">
2015-09-19 20:05:54 +02:00
<!-- Font Awesome -->
<link rel="stylesheet" href="../../plugins/fontawesome-free/css/all.min.css">
2015-09-19 20:05:54 +02:00
<!-- Ionicons -->
<link rel="stylesheet" href="https://code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css">
<!-- Theme style -->
2018-03-17 18:07:55 +01:00
<link rel="stylesheet" href="../../dist/css/adminlte.min.css">
<!-- Google Font: Source Sans Pro -->
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,400i,700">
2015-09-19 20:05:54 +02:00
</head>
<body class="hold-transition lockscreen">
<!-- Automatic element centering -->
<div class="lockscreen-wrapper">
<div class="lockscreen-logo">
<a href="../../index2.html"><b>Admin</b>LTE</a>
</div>
<!-- User name -->
<div class="lockscreen-name">John Doe</div>
2015-02-01 22:25:09 +01:00
2015-09-19 20:05:54 +02:00
<!-- START LOCK SCREEN ITEM -->
<div class="lockscreen-item">
<!-- lockscreen image -->
<div class="lockscreen-image">
<img src="../../dist/img/user1-128x128.jpg" alt="User Image">
</div>
<!-- /.lockscreen-image -->
2015-02-01 22:25:09 +01:00
2015-09-19 20:05:54 +02:00
<!-- lockscreen credentials (contains the form) -->
<form class="lockscreen-credentials">
<div class="input-group">
<input type="password" class="form-control" placeholder="password">
2015-02-01 22:25:09 +01:00
2018-03-17 18:07:55 +01:00
<div class="input-group-append">
<button type="button" class="btn"><i class="fas fa-arrow-right text-muted"></i></button>
2015-09-19 20:05:54 +02:00
</div>
2015-02-06 18:33:55 +01:00
</div>
2015-09-19 20:05:54 +02:00
</form>
<!-- /.lockscreen credentials -->
</div>
<!-- /.lockscreen-item -->
2018-03-17 18:07:55 +01:00
<div class="help-block text-center">
2015-09-19 20:05:54 +02:00
Enter your password to retrieve your session
</div>
2018-03-17 18:07:55 +01:00
<div class="text-center">
2015-09-19 20:05:54 +02:00
<a href="login.html">Or sign in as a different user</a>
</div>
2018-03-17 18:07:55 +01:00
<div class="lockscreen-footer text-center">
2020-05-31 14:28:48 +02:00
Copyright &copy; 2014-2020 <b><a href="https://adminlte.io" class="text-black">AdminLTE.io</a></b><br>
2015-09-19 20:05:54 +02:00
All rights reserved
</div>
</div>
<!-- /.center -->
2015-02-01 22:25:09 +01:00
2018-03-17 18:07:55 +01:00
<!-- jQuery -->
<script src="../../plugins/jquery/jquery.min.js"></script>
2018-02-04 00:45:19 +01:00
<!-- Bootstrap 4 -->
2018-03-17 18:07:55 +01:00
<script src="../../plugins/bootstrap/js/bootstrap.bundle.min.js"></script>
2015-09-19 20:05:54 +02:00
</body>
</html>