lockscreen.html 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <title>AdminLTE 2 | Lockscreen</title>
  7. <!-- Tell the browser to be responsive to screen width -->
  8. <meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
  9. <!-- Bootstrap 3.3.5 -->
  10. <link rel="stylesheet" href="../../bootstrap/css/bootstrap.min.css">
  11. <!-- Font Awesome -->
  12. <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css">
  13. <!-- Theme style -->
  14. <link rel="stylesheet" href="../../dist/css/AdminLTE.min.css">
  15. <!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
  16. <!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
  17. <!--[if lt IE 9]>
  18. <script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
  19. <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
  20. <![endif]-->
  21. </head>
  22. <body class="lockscreen">
  23. <!-- Automatic element centering -->
  24. <div class="lockscreen-wrapper">
  25. <div class="lockscreen-logo">
  26. <a href="../../index2.html"><b>Admin</b>LTE</a>
  27. </div>
  28. <!-- User name -->
  29. <div class="lockscreen-name">John Doe</div>
  30. <!-- START LOCK SCREEN ITEM -->
  31. <div class="lockscreen-item">
  32. <!-- lockscreen image -->
  33. <div class="lockscreen-image">
  34. <img src="../../dist/img/user1-128x128.jpg" alt="User Image">
  35. </div>
  36. <!-- /.lockscreen-image -->
  37. <!-- lockscreen credentials (contains the form) -->
  38. <form class="lockscreen-credentials">
  39. <div class="input-group">
  40. <input type="password" class="form-control" placeholder="password">
  41. <div class="input-group-btn">
  42. <button class="btn"><i class="fa fa-arrow-right text-muted"></i></button>
  43. </div>
  44. </div>
  45. </form><!-- /.lockscreen credentials -->
  46. </div><!-- /.lockscreen-item -->
  47. <div class="help-block text-center">
  48. Enter your password to retrieve your session
  49. </div>
  50. <div class="text-center">
  51. <a href="login.html">Or sign in as a different user</a>
  52. </div>
  53. <div class="lockscreen-footer text-center">
  54. Copyright &copy; 2014-2015 <b><a href="http://almsaeedstudio.com" class="text-black">Almsaeed Studio</a></b><br>
  55. All rights reserved
  56. </div>
  57. </div><!-- /.center -->
  58. <!-- jQuery 2.1.4 -->
  59. <script src="../../plugins/jQuery/jQuery-2.1.4.min.js"></script>
  60. <!-- Bootstrap 3.3.5 -->
  61. <script src="../../bootstrap/js/bootstrap.min.js"></script>
  62. </body>
  63. </html>