-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathprofilepage.html
143 lines (140 loc) · 7.69 KB
/
profilepage.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
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-Zenh87qX5JnK2Jl0vWa8Ck2rdkQ2Bzep5IDxbcnCeuOxjzrPF/et3URy9Bv1WTRi" crossorigin="anonymous">
<link rel="stylesheet" href="profilepage.css">
<link href="https://fonts.googleapis.com/css2?family=Merriweather&display=swap" rel="stylesheet">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<title>My Profile - BookIO</title>
</head>
<body>
<nav class="navbar navbar-expand-lg">
<div class="container-fluid">
<a class="navbar-brand" href="index.html">Book.IO</a>
<a class="nav-link" href="index.html#popular">Popular</a>
<a class="nav-link" href="uniprescribed.html">Prescribed by Universities</a>
<a class="nav-link" href="wishlistform.html">Request a Book</a>
<form class="d-flex" role="search">
<input class="form-control me-2" type="search" placeholder="Search here!" aria-label="Search">
<button class="btn" type="submit">Search</button>
</form>
<a href="profilepage.html" class="nav-link"><img src="./profile.png" alt=""></a>
<a href="login_page.html"><button class="btn" type="submit" href="=">Login/Sign Up!</button></a>
</div>
</nav>
<div class="container">
<div class="main-body">
<div class="row gutters-sm">
<div class="col-md-4 mb-3">
<div class="card">
<div class="card-body">
<div class="d-flex flex-column align-items-center text-center">
<img src="https://bootdey.com/img/Content/avatar/avatar7.png" alt="Admin" class="rounded-circle" width="150">
<div class="mt-3">
<h3 id="username">John Doe</h3>
<p class="text-secondary mb-1" id="category">Computer Science Student</p>
</div>
</div>
</div>
<ul class="list-group list-group-flush">
<li class="list-group-item d-flex justify-content-between align-items-center flex-wrap">
<h6 class="mb-0"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-github mr-2 icon-inline"><path d="M9 19c-5 1.5-5-2.5-7-3m14 6v-3.87a3.37 3.37 0 0 0-.94-2.61c3.14-.35 6.44-1.54 6.44-7A5.44 5.44 0 0 0 20 4.77 5.07 5.07 0 0 0 19.91 1S18.73.65 16 2.48a13.38 13.38 0 0 0-7 0C6.27.65 5.09 1 5.09 1A5.07 5.07 0 0 0 5 4.77a5.44 5.44 0 0 0-1.5 3.78c0 5.42 3.3 6.61 6.44 7A3.37 3.37 0 0 0 9 18.13V22"></path></svg></h6>
<p class="text-secondary">BookIO</p>
</li>
<li class="list-group-item d-flex justify-content-between align-items-center flex-wrap">
<h6 class="mb-0"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-facebook mr-2 icon-inline text-primary"><path d="M18 2h-3a5 5 0 0 0-5 5v3H7v4h3v8h4v-8h3l1-4h-4V7a1 1 0 0 1 1-1h3z"></path></svg></h6>
<p class="text-secondary">BookIO</p>
</li>
</ul>
</div>
</div>
<div class="col-md-8">
<div class="card mb-3">
<div class="card-body">
<div class="row">
<div class="col-sm-3">
<h4 class="mb-0">Age</h4>
</div>
<div class="col-sm-6 text-secondary">
<p id="age">22</p>
</div>
</div>
<hr>
<div class="row">
<div class="col-sm-3">
<h4 class="mb-0">Email</h4>
</div>
<div class="col-sm-9 text-secondary">
<p id="email">fip@jukmuh.al</p>
</div>
</div>
<hr>
<div class="row">
<div class="col-sm-3">
<h4 class="mb-0">Phone</h4>
</div>
<div class="col-sm-9 text-secondary">
<p id="phone">(239) 816-9029</p>
</div>
</div>
<hr>
<div class="row">
<div class="col-sm-3">
<h4 class="mb-0">College</h4>
</div>
<div class="col-sm-9 text-secondary">
<p id="college">Bay Area, San Francisco, CA</p>
</div>
</div>
</div>
</div>
<div class="row gutters-sm">
<div class="col-sm-6 mb-3">
<div class="card h-100">
<div class="card-body">
<h3 class="d-flex align-items-center mb-3">Reviews Written</h3>
<p>Web Design</p>
<ol>
<li class="reviewgiven"></li>
<li class="reviewgiven"></li>
<li class="reviewgiven"></li>
</ol>
</div>
</div>
</div>
<div class="col-sm-6 mb-3">
<div class="card h-100">
<div class="card-body">
<h3 class="d-flex align-items-center mb-3">Book Requests</h3>
<p>Web Design</p>
<ol>
<li class="bookreq"></li>
<li class="bookreq"></li>
<li class="bookreq"></li>
<li class="bookreq"></li>
</ol>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="footer text-center">
<h3>Book.IO</h3>
<p>All CopyRight and Terms Reserved</p>
<img src="./facebook.png" alt="ig" srcset="">
<img src="./instagram.png" alt="mail" srcset="">
</div>
<script src="https://www.gstatic.com/firebasejs/9.13.0/firebase-app-compat.js"></script>
<script src="https://www.gstatic.com/firebasejs/9.13.0/firebase-firestore-compat.js"></script>
<script src="https://www.gstatic.com/firebasejs/9.13.0/firebase-auth-compat.js"></script>
<script src="./config.js"></script>
<script src="./profilepage.js"></script>
</body>
</html>