119 lines
4.4 KiB
HTML
119 lines
4.4 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="zh-cn">
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<meta name="description" content="">
|
|
<meta name="author" content="">
|
|
|
|
<title>请登录 - 反诈预警平台</title>
|
|
|
|
<!-- Bootstrap Core CSS -->
|
|
<link href="/static/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
|
|
|
|
<!-- MetisMenu CSS -->
|
|
<link href="/static/vendor/metisMenu/metisMenu.min.css" rel="stylesheet">
|
|
|
|
<!-- Custom CSS -->
|
|
<link href="/static/dist/css/sb-admin-2.css" rel="stylesheet">
|
|
|
|
<!-- Custom Fonts -->
|
|
<link href="/static/vendor/font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css">
|
|
|
|
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
|
|
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
|
|
<!--[if lt IE 9]>
|
|
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
|
|
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
|
|
<![endif]-->
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col-md-4 col-md-offset-4">
|
|
<div class="login-panel panel panel-default">
|
|
<div class="panel-heading">
|
|
<img style="width: 320px;" src="https://www.huel.edu.cn/__local/E/AE/EA/61886FF3FB31C22763281F1F743_8589C3F2_26D84.png"/>
|
|
<h3 class="panel-title">请登录</h3>
|
|
</div>
|
|
<div class="panel-body">
|
|
<form role="form" id="loginForm">
|
|
<fieldset>
|
|
<div class="form-group">
|
|
<input class="form-control" placeholder="用户名" name="uname" type="text" autofocus>
|
|
</div>
|
|
<div class="form-group">
|
|
<input class="form-control" placeholder="密码" name="password" type="password" value="">
|
|
</div>
|
|
<div class="checkbox">
|
|
<label>
|
|
<input name="remember" type="checkbox" value="Remember Me">记住我
|
|
</label>
|
|
</div>
|
|
<button type="submit" class="btn btn-lg btn-block" style="background-color: firebrick;color: aliceblue;">登录</button>
|
|
</fieldset>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- jQuery -->
|
|
<script src="/static/vendor/jquery/jquery.min.js"></script>
|
|
|
|
<!-- Bootstrap Core JavaScript -->
|
|
<script src="/static/vendor/bootstrap/js/bootstrap.min.js"></script>
|
|
|
|
<!-- Metis Menu Plugin JavaScript -->
|
|
<script src="/static/vendor/metisMenu/metisMenu.min.js"></script>
|
|
|
|
<!-- Custom Theme JavaScript -->
|
|
<script src="/static/dist/js/sb-admin-2.js"></script>
|
|
<script>
|
|
document.getElementById('loginForm').addEventListener('submit', function(event) {
|
|
event.preventDefault();
|
|
|
|
const username = document.querySelector('input[name="uname"]').value;
|
|
const password = document.querySelector('input[name="password"]').value;
|
|
const remember = document.querySelector('input[name="remember"]').checked;
|
|
|
|
const data = {
|
|
username: username,
|
|
password: password,
|
|
remember: remember
|
|
};
|
|
|
|
fetch('/login', {
|
|
method: 'POST',
|
|
headers: {
|
|
'Content-Type': 'application/json'
|
|
},
|
|
body: JSON.stringify(data)
|
|
})
|
|
.then(response => response.json())
|
|
.then(data => {
|
|
if (data.success) {
|
|
// alert('认证成功!');
|
|
window.location.href = '/';
|
|
} else {
|
|
alert('认证失败:' + data.message);
|
|
}
|
|
})
|
|
.catch((error) => {
|
|
console.error('Error:', error);
|
|
alert('发生错误,请重试。');
|
|
});
|
|
});
|
|
</script>
|
|
|
|
</body>
|
|
|
|
</html>
|