aboutsummaryrefslogtreecommitdiff
path: root/juick-spring-www/src/main/webapp/WEB-INF/templates/views/settings_password.html
blob: d1e7e075cb48437c83223d692b88adfc9fdd3dac (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org"
      xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout"
      layout:decorate="~{layout/mainLayout}">
<head>
    <title th:text="${title}">Settings title</title>
</head>

<body>
<section id="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 type="submit"
                                                                                         value="  Update  "/><br/>
                <i>(max. length - 16 symbols)</i></p>
        </form>
    </fieldset>
</section>
<aside id="column">
    <p layout:fragment="column" th:replace="views/partial/settings_tabs">Settings navigation</p>
</aside>

</body>
</html>