| | <!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> |