mirror of
https://github.com/spl0k/supysonic.git
synced 2024-11-10 04:02:17 +00:00
12 lines
428 B
HTML
Executable File
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 %}
|
|
|