154 lines
3.8 KiB
Vue
154 lines
3.8 KiB
Vue
<!DOCTYPE html>
|
||
<html lang="zh">
|
||
<head>
|
||
<meta charset="UTF-8">
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
<title>员工登录 - OOIN智能知识库</title>
|
||
<style>
|
||
body {
|
||
margin: 0;
|
||
padding: 0;
|
||
background-color: #1a1a1a;
|
||
color: white;
|
||
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
|
||
min-height: 100vh;
|
||
display: flex;
|
||
flex-direction: column;
|
||
align-items: center;
|
||
justify-content: center;
|
||
}
|
||
|
||
.logo {
|
||
margin-bottom: 20px;
|
||
}
|
||
|
||
.logo img {
|
||
height: 40px;
|
||
}
|
||
|
||
.login-container {
|
||
width: 100%;
|
||
max-width: 400px;
|
||
padding: 20px;
|
||
}
|
||
|
||
.login-title {
|
||
text-align: center;
|
||
margin-bottom: 10px;
|
||
font-size: 24px;
|
||
font-weight: 500;
|
||
}
|
||
|
||
.login-subtitle {
|
||
text-align: center;
|
||
color: #888;
|
||
margin-bottom: 30px;
|
||
font-size: 14px;
|
||
}
|
||
|
||
.login-form {
|
||
background-color: rgba(255, 255, 255, 0.1);
|
||
padding: 30px;
|
||
border-radius: 8px;
|
||
}
|
||
|
||
.form-group {
|
||
margin-bottom: 20px;
|
||
}
|
||
|
||
.form-group label {
|
||
display: block;
|
||
margin-bottom: 8px;
|
||
color: #888;
|
||
}
|
||
|
||
.form-group input {
|
||
width: 100%;
|
||
padding: 12px;
|
||
border: none;
|
||
border-radius: 4px;
|
||
background-color: rgba(255, 255, 255, 0.1);
|
||
color: white;
|
||
box-sizing: border-box;
|
||
}
|
||
|
||
.form-group input::placeholder {
|
||
color: #666;
|
||
}
|
||
|
||
.remember-me {
|
||
display: flex;
|
||
align-items: center;
|
||
margin-bottom: 20px;
|
||
}
|
||
|
||
.remember-me input {
|
||
margin-right: 8px;
|
||
}
|
||
|
||
.forgot-password {
|
||
float: right;
|
||
color: #ef4444;
|
||
text-decoration: none;
|
||
font-size: 14px;
|
||
}
|
||
|
||
.login-button {
|
||
width: 100%;
|
||
padding: 12px;
|
||
background-color: #ef4444;
|
||
color: white;
|
||
border: none;
|
||
border-radius: 4px;
|
||
cursor: pointer;
|
||
font-size: 16px;
|
||
}
|
||
|
||
.support-text {
|
||
text-align: center;
|
||
margin-top: 20px;
|
||
font-size: 14px;
|
||
color: #666;
|
||
}
|
||
|
||
.support-link {
|
||
color: #ef4444;
|
||
text-decoration: none;
|
||
}
|
||
</style>
|
||
</head>
|
||
<body>
|
||
<div class="logo">
|
||
<img src="admin-pages/images/Logo copy.svg" alt="OOIN Logo">
|
||
</div>
|
||
|
||
<div class="login-container">
|
||
<h1 class="login-title">员工登录</h1>
|
||
<div class="login-subtitle">登录到OOIN数据库系统</div>
|
||
|
||
<form class="login-form">
|
||
<div class="form-group">
|
||
<label>邮箱地址</label>
|
||
<input type="email" placeholder="请输入邮箱地址">
|
||
</div>
|
||
|
||
<div class="form-group">
|
||
<label>密码</label>
|
||
<input type="password" placeholder="请输入密码">
|
||
</div>
|
||
|
||
<div class="remember-me">
|
||
<input type="checkbox" id="remember">
|
||
<label for="remember">记住我</label>
|
||
<a href="#" class="forgot-password">忘记密码?</a>
|
||
</div>
|
||
|
||
<button type="submit" class="login-button">登录</button>
|
||
</form>
|
||
|
||
<div class="support-text">
|
||
遇到问题?<a href="#" class="support-link">联系技术支持</a>
|
||
</div>
|
||
</div>
|
||
</body>
|
||
</html> |