-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmyProfile.html
More file actions
55 lines (50 loc) · 1.69 KB
/
myProfile.html
File metadata and controls
55 lines (50 loc) · 1.69 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style_profile.css">
<link rel="icon" href="/img/logo1.png">
<title>Skip The Books</title>
</head>
<body>
<header class="full-screen-header">
<nav class="nav nav-top">
<img class="logo" src="img/logo1.png" alt="Product Logo">
<ul class="nav-list">
<li><a href="home.html">Home</a></li>
<li><a href="restaurants.html">Restaurants</a></li>
<li><a href="mySchedule.html">My Schedule</a></li>
<li><a href="myProfile.html">My Profile</a></li>
</ul>
</nav>
<div class = "user">
<div class = "usercard">
<div class = "picture">
<img src = "img/user.png">
</div>
</div>
<div class = "userinfo">
<h3>USER INFORMATION</h3>
<h4>Email Address</h4>
<p id="emailProfile" type="email" class="inputs"></p>
<h4>First Name</h4>
<p id="firstNameProfile" type="text" class="inputs"></p>
<h4>Last Name</h4>
<p id="lastNameProfile" type="text" class="inputs"></p>
<h4>Member Since</h4>
<p id="memberSinceProfile" type="text" class="inputs">February 14th, 2021</p>
<h4>Address</h4>
<p id="addressProfile" type="text" class="inputs"></p>
</div>
<div style="margin-bottom: 10rem;"></div>
</div>
<script src="myProfile.js"></script>
<script>
showMyProfile();
</script>
<script src="timer.js"></script>
</body>
</html>