blob: 91ac08d52dce2448ddb7e1040672e9179d5d8bc2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
{% extends "layouts/default" %}
{% block content %}
<article class="page-content">
<fieldset>
<legend>Changing your password</legend>
<form action="/settings" method="post">
<input type="hidden" name="page" value="password"/>
<p>Change password: <input type="password" name="password" size="8"/> <input class="Button" type="submit"
value=" Update "/><br/>
<i>(max. length - 16 symbols)</i></p>
</form>
</fieldset>
</article>
{% endblock %}
{% block "column" %}
{% include "views/partial/settings_tabs" %}
{% endblock %}
|