mirror of
https://github.com/Michatec/MiniFaceBook.git
synced 2026-03-31 23:46:30 +02:00
Files
This commit is contained in:
12
templates/admin_set_password.html
Normal file
12
templates/admin_set_password.html
Normal 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 %}
|
||||
Reference in New Issue
Block a user