agent-Specialization/static/login.html
JOJO 15106e7d00 feat(branding): 将产品名统一为 Astrion
- 前端页面标题、登录/注册页、左侧栏、聊天头部、教程欢迎语全部改为 Astrion
- CLI 欢迎面板与状态栏改为 Astrion CLI
- 后端启动日志与 setup 向导改为 Astrion
- package.json 与 README 标题同步更新
- 主 system prompt 增加 Astrion 自我介绍,视觉模型 prompt 文件名从 qwenvl 改为 vl
- 项目记忆与 AGENTS.md/CLAUDE.md 新增产品名说明
2026-07-07 18:17:48 +08:00

27 lines
927 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>登录 - Astrion</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>