1
Fork 0
mirror of https://github.com/redstrate/Kawari.git synced 2025-05-06 20:57:45 +00:00
kawari/resources/templates/changepassword.html
Joshua Goins f2c009b9a7 Add Bootstrap styling to most web pages
I haven't changed any of the content yet, only included the Boostrap CSS
and unified their base template.
2025-05-03 11:56:27 -04:00

13 lines
436 B
HTML

{% extends "layout.html" %}
{% block title %}Kawari - Change Password{% endblock %}
{% block body %}
<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 %}