Files
dreamweaver/.claude/specs/design/figma-html/theme-b/login.html
zhangtuo e9d7f8832a Initial commit: clean project structure
- Backend: FastAPI + SQLAlchemy + Celery (Python 3.11+)
- Frontend: Vue 3 + TypeScript + Pinia + Tailwind
- Admin Frontend: separate Vue 3 app for management
- Docker Compose: 9 services orchestration
- Specs: design prototypes, memory system PRD, product roadmap

Cleanup performed:
- Removed temporary debug scripts from backend root
- Removed deprecated admin_app.py (embedded UI)
- Removed duplicate docs from admin-frontend
- Updated .gitignore for Vite cache and egg-info
2026-01-20 18:20:03 +08:00

29 lines
1.0 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>登录 / 授权</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="page">
<div class="container" style="padding: 80px 0;">
<div class="hero" style="max-width: 420px; margin: 0 auto; text-align: center;">
<div class="nav__logo" style="justify-content: center;">
<span class="nav__logo-badge"></span>
DreamWeaver
</div>
<h2 style="margin-top: 16px;">欢迎来到 DreamWeaver</h2>
<p>为孩子生成独一无二的故事</p>
<div class="section" style="display: grid; gap: 12px;">
<button class="btn btn--primary">使用 GitHub 登录</button>
<button class="btn btn--secondary">使用 Google 登录</button>
</div>
<div class="footer-note">我们仅使用公开信息创建账户</div>
</div>
</div>
</div>
</body>
</html>