summaryrefslogtreecommitdiffstats
path: root/src/main/resources/templates/userInfo.html
diff options
context:
space:
mode:
authorGeorg Pfuetzenreuter2022-05-06 11:49:22 +0200
committerGeorg Pfuetzenreuter2022-05-06 11:49:22 +0200
commitbeb92675071c69b86b5338297822c834ffd548f6 (patch)
treed81391468881407374f6c16105c5ca0ae61331c2 /src/main/resources/templates/userInfo.html
parent6edbc437a1e993f77eeabd458d82d52c77d8e5fa (diff)
downloadpubsh-web-beb92675071c69b86b5338297822c834ffd548f6.tar.gz
pubsh-web-beb92675071c69b86b5338297822c834ffd548f6.tar.bz2
pubsh-web-beb92675071c69b86b5338297822c834ffd548f6.zip
Init templates
Signed-off-by: Georg Pfuetzenreuter <mail@georg-pfuetzenreuter.net>
Diffstat (limited to 'src/main/resources/templates/userInfo.html')
-rw-r--r--src/main/resources/templates/userInfo.html15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/main/resources/templates/userInfo.html b/src/main/resources/templates/userInfo.html
new file mode 100644
index 0000000..1446fe2
--- /dev/null
+++ b/src/main/resources/templates/userInfo.html
@@ -0,0 +1,15 @@
+<!DOCTYPE html>
+<html xmlns:th="http://www.thymeleaf.org">
+<head th:include="layout :: headerFragment">
+</head>
+<body>
+ <div id="container">
+ <h1>
+ Hello, <span th:text="${username}">--name--</span>.
+ </h1>
+ <h3>
+ Your Date of Birth as per our records is <span th:text="${dob}" />.
+ </h3>
+ </div>
+</body>
+</html>