1
0
mirror of https://github.com/spl0k/supysonic.git synced 2024-09-19 19:01:03 +00:00
supysonic/templates/change_pass.html

12 lines
428 B
HTML
Executable File

{% extends "layout.html" %}
{% block body %}
<h2>{{ user }}</h2>
<form method="post">
<label for="current">Current password</label><input type="password" name="current" id="current" /><br />
<label for="new">New password</label><input type="password" name="new" id="new" /><br />
<label for="confirm">Confirm</label><input type="password" name="confirm" id="confirm" /><br />
<input type="submit" />
</form>
{% endblock %}