27 lines
928 B
HTML
27 lines
928 B
HTML
<!doctype html>
|
|
<html lang="zh-CN">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>登录 - AI Agent</title>
|
|
<script>
|
|
(function () {
|
|
try {
|
|
var key = window.localStorage.getItem('agents_ui_theme');
|
|
var theme = key === 'light' || key === 'dark' || key === 'claude' ? key : 'claude';
|
|
document.documentElement.setAttribute('data-theme', theme);
|
|
document.body && document.body.setAttribute('data-theme', theme);
|
|
} catch (_e) {
|
|
document.documentElement.setAttribute('data-theme', 'claude');
|
|
}
|
|
})();
|
|
</script>
|
|
<link rel="stylesheet" href="/static/dist/assets/auth.css" />
|
|
</head>
|
|
<body>
|
|
<div id="auth-app"></div>
|
|
<script src="/static/security.js"></script>
|
|
<script type="module" src="/static/dist/assets/login.js"></script>
|
|
</body>
|
|
</html>
|