Merge pull request 'chore: Update branch' (#4) from Maradona/Backend:main into main

Reviewed-on: 3002833/Backend#4
pull/1/head
David Hess 2024-10-31 11:31:49 +01:00
commit dc35da8128
1 changed files with 33 additions and 0 deletions

View File

@ -0,0 +1,33 @@
<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org">
<head>
<div th:replace="~{_metadata :: metadata}"></div>
<title>My Skill Management System</title>
</head>
<body>
<div th:replace="~{_header :: header(activePage=${home})}"></div>
<div>
<h2>Profile</h2>
<ul>
<li th:text="${employee.formOfAddress}">Form of Address</li>
<li th:text="${employee.firstName}">First Name</li>
<li th:text="${employee.lastName}">Last Name</li>
<li th:text="${employee.email}">Email</li>
<li <p>6969420</p></li>
<!-- TODO: Add Profile Phonenumber -->
</ul>
</div>
<!-- <div>
<h2>Skills</h2>
<ul>
<li th:each="primarySkill : ${primarySkills}">
<span th:text="${primarySkill.name}">Skill Name</span>
</li>
</ul>
</div> -->
<div th:replace="~{_footer :: footer}"></div>
</body>
</html>