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

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,29 +1,24 @@
{% extends "base.html" %}
{% block title %}Edit Account - Weibo-HotSign{% endblock %}
{% block title %}编辑账号 - 微博超话签到{% endblock %}
{% block content %}
<div style="max-width: 600px; margin: 0 auto;">
<h1 style="margin-bottom: 30px;">Edit Account</h1>
<div style="max-width: 560px; margin: 0 auto;">
<h1 style="font-size:24px; font-weight:700; color:#1e293b; margin-bottom:24px;">✏️ 编辑账号</h1>
<div class="card">
<form method="POST">
<div class="form-group">
<label for="remark">Remark</label>
<input type="text" id="remark" name="remark" value="{{ account.remark or '' }}" placeholder="e.g., My main account">
<label for="remark">备注</label>
<input type="text" id="remark" name="remark" value="{{ account.remark or '' }}" placeholder="例如:我的主账号">
</div>
<div class="form-group">
<label for="cookie">Cookie (Leave empty to keep current)</label>
<textarea id="cookie" name="cookie" placeholder="Paste new cookie here if you want to update"></textarea>
<small style="color: #999; display: block; margin-top: 8px;">
Your cookie will be encrypted and stored securely.
</small>
<label for="cookie">Cookie(留空则保持不变)</label>
<textarea id="cookie" name="cookie" placeholder="如需更新 Cookie请在此粘贴新的 Cookie" style="border-radius:14px;"></textarea>
<small style="color:#94a3b8; display:block; margin-top:8px; font-size:13px;">Cookie 将被加密存储</small>
</div>
<div class="btn-group">
<button type="submit" class="btn btn-primary">Save Changes</button>
<a href="{{ url_for('account_detail', account_id=account.id) }}" class="btn btn-secondary">Cancel</a>
<button type="submit" class="btn btn-primary" style="flex:1; text-align:center;">保存修改</button>
<a href="{{ url_for('account_detail', account_id=account.id) }}" class="btn btn-secondary" style="text-align:center;">取消</a>
</div>
</form>
</div>