login.html 1.3 KB

123456789101112131415161718192021222324252627282930313233343536
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
  6. <meta name="description" content="">
  7. <meta name="author" content="">
  8. <title>请登录!</title>
  9. <!-- Bootstrap core CSS -->
  10. <link href="https://v4.bootcss.com/dist/css/bootstrap.min.css" rel="stylesheet">
  11. <!-- Custom styles for this template -->
  12. <link href="../css/login.css" rel="stylesheet">
  13. </head>
  14. <body class="text-center">
  15. <form class="form-signin">
  16. <img class="mb-4" src="../img/h5.jpg" alt="" width="72" height="72">
  17. <h1 class="h3 mb-3 font-weight-normal">请登入</h1>
  18. <label for="inputEmail" class="sr-only">邮箱</label>
  19. <input type="text" id="inputEmail" class="form-control" placeholder="邮箱地址" required autofocus>
  20. <label for="inputPassword" class="sr-only">密码</label>
  21. <input type="password" id="inputPassword" class="form-control" placeholder="密码" required>
  22. <div class="checkbox mb-3">
  23. <label>
  24. <input type="checkbox" value="remember-me"> 记住我
  25. </label>
  26. </div>
  27. <button class="btn btn-lg btn-primary btn-block" type="submit">登陆</button>
  28. <p class="mt-5 mb-3 text-muted">&copy; 2019-2010</p>
  29. </form>
  30. </body>
  31. </html>