Skip to content
Snippets Groups Projects
Commit 025bc444 authored by Beth Davies's avatar Beth Davies
Browse files

Create basic html elements for profile page

parent 4a2b305e
No related branches found
No related tags found
No related merge requests found
<!DOCTYPE html>
<html lang="en" xmlns:th="http://www.thymeleaf.org"
xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout"
layout:decorate="~{layout/layout}">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Profile</title>
<link rel="stylesheet" href="/profile/profilePage.css">
</head>
<body>
<section class="profile-container">
<h3>Profile Page</h3>
<img src="${profile.profilePicture}" alt="Profile Picture" class="profile-picture">
<div class="profile-info">
<p><strong>Full Name:</strong> </p>
<p><strong>Email:</strong> </p>
<p><strong>Date of Birth:</strong> </p>
<p><strong>Contact Number:</strong> </p>
</div>
<button>Edit Profile</button>
</section>
<script src="/profile/profilePage.js"></script>
</body>
</html>
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment