This repository has been archived on 2021-01-16. You can view files and clone it, but cannot push or open issues/pull-requests.
2019-10-05 14:34:57 -05:00
|
|
|
{% extends "base.njk" %}
|
|
|
|
{% block content %}
|
2019-12-03 19:51:14 -06:00
|
|
|
<h3>Change your password on {{ sitename }}</h3>
|
2019-10-05 14:34:57 -05:00
|
|
|
<p></p>
|
|
|
|
<form action="/api/user/password" method="POST" target="responseFrame">
|
2019-12-03 19:51:14 -06:00
|
|
|
Old Password: </br><input type="password" name="password" style="min-width: 300px"/></br>
|
|
|
|
New Password: </br><input type="password" name="newpassword" style="min-width: 300px"/></br></br>
|
2019-10-05 14:34:57 -05:00
|
|
|
<input type="submit" value="Submit">
|
|
|
|
</form>
|
|
|
|
<iframe name="responseFrame" border="0" frameborder="0" style="display: inline;"></iframe>
|
|
|
|
{% endblock %}
|