You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

22 lines
934 B

{% extends "base.html" %}
{% block title %}HappyWedding{% endblock %}
{% block content %}
<h2 class="mb-4 text-2xl font-semibold text-warm-800">重置密码</h2>
<p class="mb-4 text-sm text-warm-600">目标账号:{{ account.username }}</p>
<form method="post" class="space-y-4 rounded-2xl border border-warm-200 bg-white p-6 shadow-sm">
<div>
<label class="form-label" for="password">新密码</label>
<input id="password" name="password" type="password" class="form-input" required>
</div>
<div>
<label class="form-label" for="confirm_password">确认新密码</label>
<input id="confirm_password" name="confirm_password" type="password" class="form-input" required>
</div>
<div class="flex gap-3">
<button type="submit" class="btn btn-primary">确认重置</button>
<a href="{{ cancel_url }}" class="btn btn-secondary">取消</a>
</div>
</form>
{% endblock %}