Skip to content

Commit

Permalink
Fix: Updated navbar scss (#82)
Browse files Browse the repository at this point in the history
  • Loading branch information
hoangsonww committed Mar 12, 2024
1 parent f119e3b commit 62eb66d
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions MovieVerse-Frontend/html/profile.ejs
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>User Profile</title>
<link rel="stylesheet" href="../css/style.css">
</head>
<body>
<header>
<nav>
<ul>
<li><a href="/">Home</a></li>
<li><a href="/profile">Profile</a></li>
</ul>
</nav>
</header>
<main>
<section class="profile-container">
<h1>User Profile</h1>
<% if (user) { %>
<div class="profile-info">
<img src="<%= user.avatar %>" alt="Profile Avatar" class="profile-avatar">
<h2><%= user.name %></h2>
<p>Email: <%= user.email %></p>
<p>Location: <%= user.location %></p>
</div>
<% } else { %>
<p>User not found.</p>
<% } %>
</section>
</main>
<footer>
<p>&copy; 2024 The MovieVerse. All rights reserved.</p>
</footer>
</body>
</html>

0 comments on commit 62eb66d

Please sign in to comment.