blob: c76363e50d2f624476490f68849048ecc6524cca (
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
27
28
|
<!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">
<article layout:fragment="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>
</article>
</section>
<aside id="column">
<p layout:fragment="column" th:replace="views/partial/settings_tabs">Settings navigation</p>
</aside>
</body>
</html>
|