We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8a73960 commit 461b9e9Copy full SHA for 461b9e9
2 files changed
src/main/resources/static/css/styles.css
@@ -23,4 +23,5 @@ table {
23
width: 50%;
24
padding: 10px;
25
text-align: center;
26
+ height: 500px;
27
}
src/main/resources/templates/menu.html
@@ -8,6 +8,7 @@
8
<body>
9
<h1>My Super Fancy Spa</h1>
10
<div id = "clientProfile">
11
+ <h2>My Profile</h2>
12
<p th:text="${name}"></p>
13
<p th:text="${skintype}"></p>
14
<p th:text="${manipedi}"></p>
@@ -17,10 +18,10 @@ <h2>Menu of Available Services</h2>
17
18
19
<h3>Facial Treatments</h3>
20
<table>
- <th:block th:each="service : ${appropriateFacials}"...>
21
- <tr>
22
- <td th:text="${service"></td>
- </tr>
+ <th:block th:each ="service : ${appropriateFacials}">
+<!-- <tr>-->
+ <tr th:text="${service}"></tr>
+<!-- </tr>-->
</th:block>
</table>
</div>
0 commit comments