接口跑通,基础功能全部实现

This commit is contained in:
2026-03-16 16:14:08 +08:00
parent f81aec48ca
commit 2f2d5c3795
38 changed files with 3352 additions and 1754 deletions

View File

@@ -1,69 +1,47 @@
{% extends "base.html" %}
{% block title %}Login - Weibo-HotSign{% endblock %}
{% block title %}登录 - 微博超话签到{% endblock %}
{% block extra_css %}
<style>
.auth-container {
max-width: 400px;
margin: 60px auto;
}
.auth-container { max-width: 420px; margin: 60px auto; }
.auth-card {
background: white;
border-radius: 8px;
box-shadow: 0 4px 12px rgba(0,0,0,0.15);
padding: 40px;
background: rgba(255,255,255,0.92);
backdrop-filter: blur(12px);
border-radius: 24px;
box-shadow: 0 4px 24px rgba(0,0,0,0.06);
padding: 44px 36px;
border: 1px solid rgba(255,255,255,0.6);
}
.auth-title {
text-align: center;
font-size: 28px;
font-weight: bold;
margin-bottom: 30px;
color: #6366f1;
}
.auth-link {
text-align: center;
margin-top: 20px;
color: #666;
}
.auth-link a {
color: #6366f1;
text-decoration: none;
font-weight: 500;
}
.auth-link a:hover {
text-decoration: underline;
text-align: center; font-size: 28px; font-weight: 700; margin-bottom: 8px;
background: linear-gradient(135deg, #6366f1, #a855f7);
-webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.auth-subtitle { text-align: center; color: #94a3b8; font-size: 15px; margin-bottom: 32px; }
.auth-link { text-align: center; margin-top: 24px; color: #94a3b8; font-size: 14px; }
.auth-link a { color: #6366f1; text-decoration: none; font-weight: 600; }
.auth-link a:hover { text-decoration: underline; }
</style>
{% endblock %}
{% block content %}
<div class="auth-container">
<div class="auth-card">
<h1 class="auth-title">Login</h1>
<h1 class="auth-title">🔥 微博超话签到</h1>
<p class="auth-subtitle">登录你的账号</p>
<form method="POST">
<div class="form-group">
<label for="email">Email</label>
<input type="email" id="email" name="email" required>
<label for="email">邮箱</label>
<input type="email" id="email" name="email" required placeholder="请输入邮箱">
</div>
<div class="form-group">
<label for="password">Password</label>
<input type="password" id="password" name="password" required>
<label for="password">密码</label>
<input type="password" id="password" name="password" required placeholder="请输入密码">
</div>
<button type="submit" class="btn btn-primary" style="width: 100%;">Login</button>
<button type="submit" class="btn btn-primary" style="width:100%; padding:14px; font-size:16px; border-radius:16px;">登录</button>
</form>
<div class="auth-link">
Don't have an account? <a href="{{ url_for('register') }}">Register</a>
</div>
<div class="auth-link">还没有账号?<a href="{{ url_for('register') }}">注册</a></div>
</div>
</div>
{% endblock %}