mirror of
https://github.com/StefBuwalda/WebTech.git
synced 2025-10-30 19:29:58 +00:00
Added a bunch of stuff
This commit is contained in:
27
application/auth/templates/update_user.html
Normal file
27
application/auth/templates/update_user.html
Normal file
@@ -0,0 +1,27 @@
|
||||
{% extends 'base_template.html' %}
|
||||
|
||||
{% block title %}
|
||||
Update
|
||||
{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
<form class="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 %}
|
||||
Reference in New Issue
Block a user