-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadminre.html
117 lines (108 loc) · 3.13 KB
/
adminre.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
<!DOCTYPE HTML>
<html>
<head>
<meta charset=utf-8">
<meta name="description" content="Ecommerce Website">
<meta name="author" content="Fawaz ahamed">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="An HTML Based Electronic Ecommerce Store">
<title>Admin Dashboard</title>
<link rel="stylesheet" href="bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="adminda.css">
</head>
<body class="home">
<header>
<nav class="navbar navbar-inverse">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#myNavbar">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a href="index.html">
<img src="Includes/Image/gadgetmac.png" class="logo" alt="IMG-LOGO">
</a>
</div>
<div class="collapse navbar-collapse" id="myNavbar">
<ul class="nav navbar-nav navbar-right">
<li><a href=""><span class="glyphicon glyphicon-user"></span> Account </a></li>
<li><a href=""><span class="glyphicon glyphicon-log-out"></span> Log out</a></li>
</ul>
</div>
</div>
</nav>
</header>
<div class="hero-image">
<div class="hero-text">
<h1>Welcome Admin</h1>
</div>
</div>
<div class="row">
<div class="col-md-4">
<aside>
<div class="sidebar">
<a href="admindash.html">Dashboard</a>
<a class="active" href="adminre.html">Retailers</a>
<a href="adminus.html">Users</a>
<div class="dropdown">
<a href="admincat.html">Category</a>
<div class="dropdown-content">
<a href="admincat.html">Add Category</a>
<a href="adminman.html">Manage Category</a>
</div>
</div>
</aside>
</div>
</div>
<main>
<div class="col-md-8"><div class="container">
<h2>Registered Retailers</h2>
<div class="table-responsive">
<table class="table">
<thead>
<tr>
<th>ID</th>
<th>Name</th>
<th>Shop Name</th>
<th>City</th>
<th>Address</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Rahul</td>
<td>Apple Store</td>
<td>Bangalore</td>
<td>Electronic city</td>
</tr>
<tr>
<td>2</td>
<td>Jobin</td>
<td>Ericson Communication</td>
<td>Bangalore</td>
<td>Koramangala</td>
</tr>
<tr>
<td>3</td>
<td>Suresh</td>
<td>Mi Store</td>
<td>Bangalore</td>
<td>Whitefield</td>
</tr>
<tr>
<td>4</td>
<td>Anthony</td>
<td>Alien Communication</td>
<td>Bangalore</td>
<td>Electronic city</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</main>
</body>
</html>