summaryrefslogtreecommitdiff
path: root/spring-boot/09-spring-security-db-authentication/src/main/resources/templates/contact/result.html
blob: d1bda9af2677cbd51c02b2e5510e76122698c522 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<!DOCTYPE HTML>
<html xmlns:th="http://www.thymeleaf.org" th:replace="~{layout/main :: layout(title='Contact Us', content=~{::main})}">

<body>
    <main>
        <p>We received your message.</p>

        <p th:text="'Thank you ' + ${contactForm.name} + '.'" />

        <a th:href="@{/contact}">Try again</a>
    </main>
</body>

</html>