mirror of
https://github.com/201206030/novel-plus.git
synced 2025-07-01 15:26:37 +00:00
60 lines
1.8 KiB
Java
60 lines
1.8 KiB
Java
<!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>
|
|
<link href="/css/bootstrap.min.css" rel="stylesheet"/>
|
|
<link href="/css/signin.css" rel="stylesheet"/>
|
|
<style>
|
|
.btn-primary {
|
|
color: #fff;
|
|
background-color: #3eaf7c;
|
|
border-color: #3eaf7c
|
|
}
|
|
|
|
.btn-primary:hover {
|
|
color: #fff;
|
|
background-color: #65bf96;
|
|
border-color: #65bf96
|
|
}
|
|
|
|
.btn-primary.focus, .btn-primary:focus {
|
|
box-shadow: 0 0 0 3px rgba(101, 191, 96, .5)
|
|
}
|
|
|
|
.btn-primary.disabled, .btn-primary:disabled {
|
|
background-color: #3eaf7c;
|
|
border-color: #3eaf7c
|
|
}
|
|
|
|
|
|
.form-control:focus {
|
|
color: #495057;
|
|
background-color: #fff;
|
|
border-color: #78c7a3;
|
|
outline: 0
|
|
}
|
|
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<form class="form-signin" method="post" action="/login">
|
|
<h4 style="text-align: center" class="form-signin-heading">爬虫管理系统登录</h4>
|
|
<p>
|
|
<label for="username" class="sr-only">用户名</label>
|
|
<input type="text" id="username" name="username" class="form-control" placeholder="用户名" required
|
|
autofocus>
|
|
</p>
|
|
<p>
|
|
<label for="password" class="sr-only">密码</label>
|
|
<input type="password" id="password" name="password" class="form-control" placeholder="密码" required>
|
|
</p>
|
|
<button class="btn btn-lg btn-primary btn-block" type="submit">登录</button>
|
|
</form>
|
|
</div>
|
|
</body>
|
|
</html> |