blob: d78835468356ed43c6478e23493018981512a125 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
{% extends "layouts/content" %}
{% block content %}
<article>
<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 type="submit"
value=" Update "/><br/>
<i>(max. length - 16 symbols)</i></p>
</form>
</fieldset>
</article>
{% endblock %}
{% block "column" %}
{% include "views/partial/settings_tabs" %}
{% endblock %}
|