File size: 1,075 Bytes
644c352 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | <!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Opus API 管理系统 - 登录</title>
<link rel="stylesheet" href="/static/styles.css">
</head>
<body>
<div class="login-container">
<div class="login-box">
<h1>🚀 Opus API 管理系统</h1>
<form id="loginForm">
<div class="form-group">
<input type="text" id="username" name="username" placeholder="用户名" required autocomplete="username">
</div>
<div class="form-group">
<input type="password" id="password" name="password" placeholder="密码" required autocomplete="current-password">
</div>
<button type="submit" class="btn btn-primary btn-block">登录</button>
</form>
<div class="error" id="loginError"></div>
</div>
</div>
<script src="/static/app.js"></script>
</body>
</html> |