123456789101112131415161718192021222324252627282930313233343536 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="utf-8">
- <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
- <meta name="description" content="">
- <meta name="author" content="">
- <title>请登录!</title>
- <!-- Bootstrap core CSS -->
- <link href="https://v4.bootcss.com/dist/css/bootstrap.min.css" rel="stylesheet">
- <!-- Custom styles for this template -->
- <link href="../css/login.css" rel="stylesheet">
- </head>
- <body class="text-center">
- <form class="form-signin">
- <img class="mb-4" src="../img/h5.jpg" alt="" width="72" height="72">
- <h1 class="h3 mb-3 font-weight-normal">请登入</h1>
- <label for="inputEmail" class="sr-only">邮箱</label>
- <input type="text" id="inputEmail" class="form-control" placeholder="邮箱地址" required autofocus>
- <label for="inputPassword" class="sr-only">密码</label>
- <input type="password" id="inputPassword" class="form-control" placeholder="密码" required>
- <div class="checkbox mb-3">
- <label>
- <input type="checkbox" value="remember-me"> 记住我
- </label>
- </div>
- <button class="btn btn-lg btn-primary btn-block" type="submit">登陆</button>
- <p class="mt-5 mb-3 text-muted">© 2019-2010</p>
- </form>
- </body>
- </html>
|