-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprofile-page.html
More file actions
76 lines (66 loc) · 3.33 KB
/
Copy pathprofile-page.html
File metadata and controls
76 lines (66 loc) · 3.33 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<!DOCTYPE html>
<html lang="en">
<head>
<title>Eat'n Profile</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.3.1/dist/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link href='https://fonts.googleapis.com/css?family=Ubuntu' rel='stylesheet'>
<script src="https://kit.fontawesome.com/ed3900b259.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="/css/profile-styles.css">
<link rel="stylesheet" href="css/styles.css">
<link rel="stylesheet" href="css/search.css">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="https://www.gstatic.com/firebasejs/10.4.0/firebase-compat.js"></script>
<script src="https://www.gstatic.com/firebasejs/10.4.0/firebase-auth-compat.js"></script>
<script src="https://www.gstatic.com/firebasejs/10.4.0/firebase-firestore-compat.js"></script>
</head>
<body>
<div class="navbar">
<svg xmlns="http://www.w3.org/2000/svg" width="199" height="67" viewBox="0 0 199 67" fill="none">
<circle cx="32.8558" cy="34.1442" r="32.8558" fill="#55566C"/>
<circle cx="76.6635" cy="34.1442" r="32.8558" fill="#FF2405"/>
<circle cx="120.471" cy="32.8558" r="32.8558" fill="#98C794"/>
<circle cx="165.567" cy="32.8558" r="32.8558" fill="#FFA05F"/>
</svg>
<div class="search-nav">
<i class="fa-solid fa-magnifying-glass fa-xl" style="color: #102651; margin-top: 5%;"></i>
<div class="search-bar">
<input id="searchInput" type="text" placeholder="Search...">
<ul id="searchResults" class="search-results"></ul>
</div>
</div>
<div class="profile-nav">
<!-- Account icon needed here -->
<i class="fa-solid fa-user"></i>
<a href="profile-page.html" onclick=isLoggedIn() class="profile-link">Profile</a>
</div>
</div>
<nav class="sidenav">
<a href="index.html"><i class="fa-solid fa-house fa-xl"></i></a>
<a href="friendsList.html"><i class="fa-solid fa-user-group fa-xl"></i></a>
<a href="page3.html"><i class="fa-solid fa-trophy fa-xl"></i></a>
<a href="page3.html"><i class="fa-solid fa-bookmark fa-xl"></i></a>
</nav>
<h1 id="huname">User Profile</h1>
<div id="pp" class="profile-page">
<div id="first" class="user-info">
<img src="assets/user.svg" alt="User Profile" class="profile-picture">
<div class="user-info">
<p id="pusername"><strong>Username:</strong> Faith</p>
<p id="pname"><strong>Name:</strong> Faith</p>
<p id="pemail"><strong>Email:</strong> faithlov@udel.edu</p>
<p><strong>Location:</strong> Newark DE</p>
</div>
<div>
<button onclick="logOut()">Log Out</button>
</div>
</div>
<div id="post-container">
</div>
</div>
<script src="js/firebaseInit.js"></script>
<script src="js/login.js"></script>
<script src="js/updateProfile.js"></script>
<script src="js/search.js"></script>
</body>
</html>