-
Notifications
You must be signed in to change notification settings - Fork 19
/
ProfilePage.html
57 lines (56 loc) · 2.61 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
<!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 rel="stylesheet" href="profilePage.css">
<title>Profile Page</title>
</head>
<body>
<div class="sidebar">
<h1 class="listItems">HNG</h1>
<h3 class="listItems"><a href="#">Home</a></h3>
<h3 class="listItems"><a href="#">Profile</a></h3>
<h3 class="listItems"><a href="#">Dashboard</a></h3>
<h3 class="listItems"><a href="#">Community</a></h3>
<h3 class="listItems"><a href="#">Contact</a></h3>
<h3 class="listItems"><a href="#">About</a></h3>
</div>
<div class="middlebar">
<div class="profilePic">
<img src="https://res.cloudinary.com/dlq9o1289/image/upload/v1570789985/icons8-customer-100_lmennm.png">
<p>USERNAME</p>
</div>
<br>
<div>
<p class="middleItems"><img src="https://res.cloudinary.com/dlq9o1289/image/upload/v1570790756/icons8-user-50_evninv.png" class="middleIcon"> Profile</p>
<p class="middleItems"><img src="https://res.cloudinary.com/dlq9o1289/image/upload/c_scale,h_50/v1570791815/icons8-ball-point-pen-96_j6gxwk.png" class="middleIcon"> Edit Profile</p>
<p class="middleItems"><img src="https://res.cloudinary.com/dlq9o1289/image/upload/v1570792105/icons8-home-48_gv94w3.png" class="middleIcon">Home</p>
<p class="middleItems"><img src="https://res.cloudinary.com/dlq9o1289/image/upload/v1570792262/icons8-popup-50_2_og0mby.png" class="middleIcon"> Dashboard</p>
</div>
</div>
<div class="rightbar">
<p class="rightHeader"><img src="https://res.cloudinary.com/dlq9o1289/image/upload/c_scale,h_50/v1570791815/icons8-ball-point-pen-96_j6gxwk.png" class="middleIcon">Update Profile<hr></p>
<form>
<p>First Name
<input type="text" class="textbox">
</p>
<p>Last Name
<input type="text" class="textbox">
</p>
<p>Username
<input type="text" class="textbox">
</p>
<p>Phone No
<input type="text" class="textbox">
</p>
<p>About yourself
<input type="textarea" class="textarea">
</p>
<button class="update">UPDATE</button>
<button class="cancel">CANCEL</button>
</form>
</div>
</body>
</html>