-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprofile.html
More file actions
46 lines (37 loc) · 1.14 KB
/
Copy pathprofile.html
File metadata and controls
46 lines (37 loc) · 1.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>My Profile | Digi-Health</title>
<link rel="stylesheet" href="{{ url_for('static', filename='css/profile.css') }}">
</head>
<body>
<!-- TOP BAR -->
<header class="profile-header">
<h2>My Profile</h2>
<a href="/logout" class="logout-btn">Logout</a>
</header>
<!-- PROFILE CONTENT -->
<main class="profile-wrapper">
<div class="profile-card">
<div class="profile-row">
<span class="label">Name</span>
<span class="value">{{ session.user_name }}</span>
</div>
<div class="profile-row">
<span class="label">Email</span>
<span class="value">{{ session.user_email }}</span>
</div>
<div class="profile-row">
<span class="label">Role</span>
<span class="value">{{ session.user_role | capitalize }}</span>
</div>
<div class="profile-row">
<span class="label">Member Since</span>
<span class="value">January 2026</span>
<!-- later this can come from DB -->
</div>
</div>
</main>
</body>
</html>