This commit is contained in:
2025-09-27 20:49:58 +02:00
commit 767fb638ce
58 changed files with 6724 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
{% extends "base.html" %}
{% block title %}{{ _('Set New Password') }}{% endblock %}
{% block content %}
<h2><i class="bi bi-key me-2"></i>{{ _('Set New Password for %(username)s', username=user.username) }}</h2>
<form method="post">
<div class="mb-3">
<label class="form-label"><i class="bi bi-lock-fill me-1"></i>{{ _('New Password') }}</label>
<input type="password" name="new_password" class="form-control" required>
</div>
<button class="btn btn-success" type="submit"><i class="bi bi-check-circle me-1"></i>{{ _('Set Password') }}</button>
</form>
{% endblock %}