148 lines
3.1 KiB
HTML
148 lines
3.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>秦港安全监管平台</title>
|
|
</head>
|
|
<style>
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
.login {
|
|
width: 100vw;
|
|
height: 100vh;
|
|
display: flex;
|
|
position: relative;
|
|
color: #fff;
|
|
|
|
.bg1 {
|
|
width: 61.7%;
|
|
height: 100%;
|
|
background-image: url("./images/bg1.png");
|
|
background-size: 100% 100%;
|
|
background-repeat: no-repeat;
|
|
}
|
|
|
|
.bg2 {
|
|
width: 38.3%;
|
|
height: 100%;
|
|
background-image: url("./images/bg2.png");
|
|
background-size: 100% 100%;
|
|
background-repeat: no-repeat;
|
|
position: relative;
|
|
|
|
.logo {
|
|
width: 53px;
|
|
height: 51px;
|
|
position: absolute;
|
|
top: 25px;
|
|
right: 38px;
|
|
|
|
img {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
}
|
|
|
|
.form {
|
|
width: 432px;
|
|
margin: 300px auto;
|
|
|
|
.main_title {
|
|
font-size: 36px;
|
|
letter-spacing: 5px;
|
|
margin-bottom: 45px;
|
|
}
|
|
|
|
label {
|
|
display: block;
|
|
margin-top: 20px;
|
|
}
|
|
|
|
input {
|
|
margin-top: 20px;
|
|
width: 100%;
|
|
padding: 15px 10px;
|
|
outline: none;
|
|
border-radius: 4px;
|
|
border: none;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
button {
|
|
margin-top: 65px;
|
|
width: 100%;
|
|
background-color: #008aff;
|
|
color: #fff;
|
|
outline: none;
|
|
border-radius: 4px;
|
|
border: none;
|
|
box-sizing: border-box;
|
|
padding: 18px 0;
|
|
cursor: pointer;
|
|
}
|
|
}
|
|
}
|
|
|
|
.footer {
|
|
position: absolute;
|
|
bottom: 30px;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
font-size: 14px;
|
|
}
|
|
}
|
|
</style>
|
|
<body>
|
|
<div class="login">
|
|
<div class="bg1"></div>
|
|
<div class="bg2">
|
|
<div class="logo">
|
|
<img src="./images/logo.png" alt=""/>
|
|
</div>
|
|
<div class="form">
|
|
<div class="main_title">欢迎登录!</div>
|
|
<label for="username">账号</label>
|
|
<input id="username" placeholder="请输入用户名"></input>
|
|
<label for="password">密码</label>
|
|
<input id="password" type="password" placeholder="请输入密码"></input>
|
|
<button onclick="login()">登录</button>
|
|
</div>
|
|
</div>
|
|
<div class="footer">
|
|
秦港股份安全监管平台 版权所有 Copy right 2013-2020-v7
|
|
</div>
|
|
</div>
|
|
</body>
|
|
<script>
|
|
function login() {
|
|
let username = document.getElementById('username').value
|
|
let password = document.getElementById('password').value
|
|
if (!username && !password) {
|
|
alert('请输入账号和密码')
|
|
} else {
|
|
fetch('/ysapi/login', {
|
|
method: 'POST',
|
|
headers: {
|
|
'Content-Type': 'application/json'
|
|
},
|
|
body: JSON.stringify({
|
|
username,
|
|
password
|
|
})
|
|
}).then(res => {
|
|
return res.json()
|
|
}).then(res => {
|
|
if (res.code === 200) {
|
|
// window.open('')
|
|
} else {
|
|
alert(res.msg)
|
|
}
|
|
})
|
|
}
|
|
}
|
|
</script>
|
|
</html>
|