mirror of
https://github.com/redstrate/Kawari.git
synced 2025-05-06 12:47:45 +00:00
14 lines
491 B
HTML
14 lines
491 B
HTML
{% extends "account_base.html" %}
|
|
|
|
{% block title %}Kawari - Change Password{% endblock %}
|
|
{% set current_page = "changepassword" %}
|
|
|
|
{% block accountbody %}
|
|
<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>
|
|
{% endblock %}
|