Files
WebTech/application/auth/templates/update_user.html
DaanoGames 3ba6fc780c form
2025-04-16 11:31:52 +02:00

27 lines
577 B
HTML

{% extends 'base_template.html' %}
{% block title %}
Update
{% endblock %}
{% block content %}
<form class="form bg-body-tertiary" method="POST">
{{ form.hidden_tag() }}
{% if feedback %}
<p class="feedback">{{feedback}}</p>
{% endif %}
<div>
Current password <br> {{ form.current_password() }}
</div>
<div>
New password <br> {{ form.password() }}
</div>
<div>
Confirm new password <br> {{ form.confirm_password() }}
</div>
<div class="submit">
{{ form.submit() }}
</div>
</form>
{% endblock %}