-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadminprofile.html
67 lines (66 loc) · 1.66 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
61
62
63
64
65
66
67
<!DOCTYPE html>
<html >
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>SendIT | Dashboard</title>
<link rel="stylesheet" href="css/profile.css">
</head>
<body>
<header>
<h1 class="logo">SendIT</h1>
<nav>
<ul>
<li><a href="admindash.html">Home</a></li>
<li><a href="index.html">Logout</a></li>
</ul>
</nav>
<div class="clear"></div>
</header>
<div id="container">
<h1>Admin Profile</h1>
<p>Hello, View and Edit you account details</p>
<div class="form">
<form class="form">
<tr>
<td colspan="3">
<div class="break"></div>
</td>
</tr>
<table class="data-table">
<thead>
<tr>
<th>Name</th>
<td>James Mudidi</td>
<td><input type="submit" name="Submit" value="Edit"></td>
</tr>
<tr>
<th>Email</th>
<td>james@sendit.com</td>
<td><input type="submit" name="Submit" value="Edit"></td>
</tr>
<tr>
<th>Password</th>
<td>This Field allows you to edit only</td>
<td><input type="submit" name="Submit" value="Edit"></td>
</tr>
<tr>
<th>Phone</th>
<td>+256 759 888270</td>
<td><input type="submit" name="Submit" value="Edit"></td>
</tr>
<tr>
<th>District</th>
<td>Wakiso</td>
<td><input type="submit" name="Submit" value="Edit"></td>
</tr>
</table>
</form>
</div>
</div>
<footer align="center">
Copyright © SendIT, 2018. All rights reserved.
</footer>
<script type="text/javascript" src="js/script.js"></script>
</body>
</html>