blob: 607a9eb0710cea13f0286ada068dc9c96d258518 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<!DOCTYPE HTML>
<html xmlns:th="http://www.thymeleaf.org">
<head>
<title>Contact Us</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<link rel="stylesheet" th:href="@{/css/main.css}" />
</head>
<body>
<h1>Contact Us</h1>
<p>We received your message.</p>
<p th:text="'Thank you ' + ${contactForm.name} + '.'" />
<a href="/contact">Try again</a>
</body>
</html>
|