agent-Specialization/static/register.html
JOJO 3c66c6b05f refactor(naming): 移除代码中的第三方产品名
- DeepSeekClient → APIClient(含 7 个 mixin,38 个文件)
- --claude-* CSS 变量全部替换为新语义 token,删除 _tokens.scss 兼容别名
- build_openai_tools → build_llm_tools
- login/register.html 主题 key claude → classic;terminal.html 变量改 --app- 前缀
- 注释中的 Claude 归因描述中性化
- 顺带删除误跟踪的 __pycache__ .pyc 缓存
2026-07-28 18:43:03 +08:00

31 lines
1.2 KiB
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>
<link rel="icon" type="image/svg+xml" href="/static/astrion-avatar.svg">
<link rel="icon" type="image/png" sizes="32x32" href="/static/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/static/favicon-16x16.png">
<link rel="apple-touch-icon" sizes="180x180" href="/static/apple-touch-icon.png">
<script>
(function () {
try {
var key = window.localStorage.getItem('agents_ui_theme');
var theme = key === 'light' || key === 'dark' || key === 'classic' ? key : 'classic';
document.documentElement.setAttribute('data-theme', theme);
document.body && document.body.setAttribute('data-theme', theme);
} catch (_e) {
document.documentElement.setAttribute('data-theme', 'classic');
}
})();
</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/register.js"></script>
</body>
</html>