Skip to content

Commit 461b9e9

Browse files
committed
Chapter 13 - Studio Spa-Day LaunchCodeEducation#2
1 parent 8a73960 commit 461b9e9

2 files changed

Lines changed: 6 additions & 4 deletions

File tree

src/main/resources/static/css/styles.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,5 @@ table {
2323
width: 50%;
2424
padding: 10px;
2525
text-align: center;
26+
height: 500px;
2627
}

src/main/resources/templates/menu.html

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
<body>
99
<h1>My Super Fancy Spa</h1>
1010
<div id = "clientProfile">
11+
<h2>My Profile</h2>
1112
<p th:text="${name}"></p>
1213
<p th:text="${skintype}"></p>
1314
<p th:text="${manipedi}"></p>
@@ -17,10 +18,10 @@ <h2>Menu of Available Services</h2>
1718

1819
<h3>Facial Treatments</h3>
1920
<table>
20-
<th:block th:each="service : ${appropriateFacials}"...>
21-
<tr>
22-
<td th:text="${service"></td>
23-
</tr>
21+
<th:block th:each ="service : ${appropriateFacials}">
22+
<!-- <tr>-->
23+
<tr th:text="${service}"></tr>
24+
<!-- </tr>-->
2425
</th:block>
2526
</table>
2627
</div>

0 commit comments

Comments
 (0)