login.html 4.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <title></title>
  7. <meta name="description" content="">
  8. <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
  9. <meta name="robots" content="all,follow">
  10. <!-- Bootstrap CSS-->
  11. <link rel="stylesheet" href="__VENDOR__/bootstrap/css/bootstrap.min.css">
  12. <!-- Font Awesome CSS-->
  13. <link rel="stylesheet" href="__VENDOR__/font-awesome/css/font-awesome.min.css">
  14. <!-- Fontastic Custom icon font-->
  15. <link rel="stylesheet" href="__CSS__/fontastic.css">
  16. <!-- Google fonts - Poppins -->
  17. <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Poppins:300,400,700">
  18. <!-- theme stylesheet-->
  19. <link rel="stylesheet" href="__CSS__/style.default.css" id="theme-stylesheet">
  20. <!-- Custom stylesheet - for your changes-->
  21. <link rel="stylesheet" href="__CSS__/custom.css">
  22. <!-- Favicon-->
  23. <link rel="shortcut icon" href="__IMG__/favicon.ico">
  24. <!-- Tweaks for older IEs--><!--[if lt IE 9]>
  25. <script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
  26. <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script><![endif]-->
  27. </head>
  28. <body>
  29. <div class="page login-page">
  30. <div class="container d-flex align-items-center">
  31. <div class="form-holder has-shadow">
  32. <div class="row">
  33. <!-- Logo & Information Panel-->
  34. <div class="col-lg-6">
  35. <div class="info d-flex align-items-center">
  36. <div class="content">
  37. <div class="logo">
  38. <h1>后台管理系统</h1>
  39. </div>
  40. <!--<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit.</p>-->
  41. </div>
  42. </div>
  43. </div>
  44. <!-- Form Panel -->
  45. <div class="col-lg-6 bg-white">
  46. <div class="form d-flex align-items-center">
  47. <div class="content">
  48. <form method="post" class="form-validate" >
  49. <div class="form-group">
  50. <input id="login-username" type="text" name="name" required data-msg="请输入您的用户名" class="input-material">
  51. <label for="login-username" class="label-material">用户名</label>
  52. </div>
  53. <div class="form-group">
  54. <input id="login-password" type="password" name="password" required data-msg="请输入您的密码" class="input-material">
  55. <label for="login-password" class="label-material">密码</label>
  56. </div>
  57. <div>
  58. <small style="color: #f20000" id="errorMsg">{$errorMsg}</small>
  59. </div>
  60. <input style="margin-top: 30px;" type="submit" class="btn btn-primary" value="登陆"/>
  61. <!-- This should be submit button but I replaced it with <a> for demo purposes-->
  62. </form>
  63. <!--<a href="#" class="forgot-pass">Forgot Password?</a><br><small>Do not have an account? </small><a href="register.html" class="signup">Signup</a>-->
  64. </div>
  65. </div>
  66. </div>
  67. </div>
  68. </div>
  69. </div>
  70. <div class="copyrights text-center">
  71. <!--<p>Design by <a href="#" class="external">Bootstrapious</a>
  72. &lt;!&ndash; Please do not remove the backlink to us unless you support further theme's development at https://bootstrapious.com/donate. It is part of the license conditions. Thank you for understanding :)&ndash;&gt;
  73. </p>-->
  74. </div>
  75. </div>
  76. <!-- JavaScript files-->
  77. <script src="__VENDOR__/jquery/jquery.min.js"></script>
  78. <script src="__VENDOR__/popper.js/umd/popper.min.js"> </script>
  79. <script src="__VENDOR__/bootstrap/js/bootstrap.min.js"></script>
  80. <script src="__VENDOR__/jquery.cookie/jquery.cookie.js"> </script>
  81. <script src="__VENDOR__/chart.js/Chart.min.js"></script>
  82. <script src="__VENDOR__/jquery-validation/jquery.validate.min.js"></script>
  83. <!-- Main File-->
  84. <script src="__JS__/front.js"></script>
  85. </body>
  86. </html>