2025-05-03 12:26:26 -04:00
|
|
|
{% extends "account_base.html" %}
|
2025-04-05 22:54:48 -04:00
|
|
|
|
2025-05-03 11:56:27 -04:00
|
|
|
{% block title %}Kawari - Change Password{% endblock %}
|
2025-05-03 12:26:26 -04:00
|
|
|
{% set current_page = "changepassword" %}
|
2025-05-03 11:56:27 -04:00
|
|
|
|
2025-05-03 12:26:26 -04:00
|
|
|
{% block accountbody %}
|
2025-04-05 22:54:48 -04:00
|
|
|
<form method='post'>
|
|
|
|
<label for="old_password">Old Password:</label><br>
|
|
|
|
<input type='text' id='old_password' name='old_password'/><br>
|
|
|
|
<label for="new_password">New Password:</label><br>
|
|
|
|
<input type='text' id='new_ppassword' name='new_password'/><br>
|
|
|
|
<button type='submit'>Submit</button>
|
|
|
|
</form>
|
2025-05-03 11:56:27 -04:00
|
|
|
{% endblock %}
|