-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathprofile.html
46 lines (44 loc) · 1.79 KB
/
profile.html
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">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Profile Page - View</title>
<link rel="stylesheet" href="profile.css">
</head>
<body>
<div class = "top-navbar">
<button onclick="window.location.href='index.html'">Home</button>
</div>
<div class="content-container">
<!-- Profile and other sections -->
<div class="profile-header">
<img src="profile-pic.jpg" alt="Profile Picture" class="profile-pic">
<div class="profile-info">
<h2 class="name-text"><span id="fullName"></span></h2>
<div class="additional-info">
<p class="age-text"><strong>Age:</strong> <span id="age"></span></p>
<p class="zip-code-text"><strong>Zip code:</strong><span id="zipCode"></span></p>
</div>
<div id="party" class="registered-party">
<p><strong>Registered Party:</strong> <span id="party"></span></p>
</div>
</div>
<!--<div>
<p><strong>Name:</strong> <span id="fullName"></span></p>
<p><strong>Zip Code:</strong> <span id="zipCode"></span></p>
<p><strong>Age:</strong> <span id="age"></span></p>
<p><strong>Registered Party:</strong> <span id="party"></span></p>
</div>-->
</div>
<div class="top-issues">
<h2>Top Issues</h2>
<ul id="topIssues"></ul>
</div>
<div class="options-container">
<button class="edit-button" onclick="window.location.href='profileedit.html'">Edit</button>
</div>
</div>
<script src="filteredDropdown.js"></script>
</body>
</html>