Merge pull request 'gui: Add profile page' (#11) from 2021323/Backend:main into main
Reviewed-on: Maradona/Backend#11pull/1/head
commit
f9ca4ed81e
|
@ -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>
|
Loading…
Reference in New Issue