2025-06-02 17:19:57 +08:00

62 lines
1.4 KiB
HTML

<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8" />
<title>知识库系统登录</title>
<style>
body {
font-family: sans-serif;
padding: 20px;
width: 300px;
box-sizing: border-box;
}
h2 {
margin-top: 0;
}
.form-group {
display: flex;
flex-direction: column;
gap: 12px;
}
input, button {
width: 100%;
padding: 10px;
box-sizing: border-box;
font-size: 14px;
}
button {
background: #007bff;
color: white;
border: none;
cursor: pointer;
}
button:hover {
background: #0056b3;
}
.error {
color: red;
font-size: 12px;
margin-top: 8px;
}
</style>
</head>
<body>
<h2>知识库系统登录</h2>
<div class="form-group">
<input id="username" placeholder="用户名" />
<input id="password" type="password" placeholder="密码" />
<input type="password" id="llmPassword" placeholder="请输入AnythingLLM的密码" autocomplete="off" />
<button id="loginBtn">登录</button>
</div>
<div class="error" id="errorBox"></div>
<script src="../scripts/config.js"></script>
<script src="../scripts/login.js"></script>
</body>
</html>