-
Notifications
You must be signed in to change notification settings - Fork 0
/
adminprofile.html
60 lines (53 loc) · 1.63 KB
/
adminprofile.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
<!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 = "style.css">
<title>STORE MANAGER</title>
</head>
<body>
<header>
<div class="topnav"id="myTopnav">
<a href="adminhomepage.html">All Products</a>
<a href="adminsales.html"> Total Sales</a>
<a href="attendantsales.html">Attendant Sales</a>
<a href="Action.html">Action</a>
<a href="adduser.html">Add User</a>
<div class = "search">
<input type="text" placeholder="Filter by Attendant name..">
</div>
<div class="topnav-right">
<div class="dropdown">
<button class="dropbtn">Account
<i class="fa fa-caret-down"></i>
</button>
<div class="dropdown-content">
<a href="adminprofile.html">Profile</a>
<a href="index.html">Logout</a>
</div>
</div>
</div>
</header>
<div class = "card">
<div id = "title">
<h1 >MY PROFILE</h1></div>
<form >
<div class="imgcontainer">
<img src="images/avatar.png" alt="Avatar" class="avatar">
</div>
<h2>Store Attendant</h2><br>
<p>Username:John Doe</p>
<hr>
<p>Email Address:[email protected]</p>
<hr>
<p>Phone Number:+254708819876</p>
<hr>
</form>
</div>
<div class="footer">
<p>Copyrights 2018</p>
</div>
</body>
</html>