blob: 1f4b54ce7ea29226bf4ecf1f1da444d5ddcdd7e4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<!DOCTYPE HTML>
<html xmlns:th="http://www.thymeleaf.org">
<head>
<title>Form handling example with Thymeleaf</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<link rel="stylesheet" th:href="@{/css/main.css}" />
</head>
<body>
<h1>Form handling example with Thymeleaf</h1>
<a th:href="@{/contact}">Contact Us</a>
</body>
</html>
|