mirror of
https://github.com/Michatec/MiniFaceBook.git
synced 2026-04-01 07:56:28 +02:00
12 lines
596 B
HTML
12 lines
596 B
HTML
{% 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 %} |