-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadminman.html
121 lines (113 loc) · 3.35 KB
/
adminman.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
118
119
120
121
<!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 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 class="active" href="adminman.html">Manage Category</a>
</div>
</div>
</aside>
</div>
</div>
<main>
<div class="col-md-8"><div class="container">
<h2>Manage Categories</h2>
<div class="table-responsive">
<table class="table">
<thead>
<tr>
<th>ID</th>
<th>Category Name</th>
<th>Updated Date</th>
<th>Description</th>
<th>Manage</th>
</tr>
</thead>
<tbody>
<tr>
<td>100</td>
<td>Mobiles</td>
<td>18-01-2019</td>
<td>Smart phones are great</td>
<td><a onclick="myFunction()">Delete</a></td>
</tr>
<tr>
<td>101</td>
<td>Laptops</td>
<td>18-01-2019</td>
<td>Laptops have a much large display</td>
<td><a onclick="myFunction()">Delete</a></td>
</tr>
<tr>
<td>102</td>
<td>Tablets</td>
<td>18-01-2019</td>
<td>Handy for Designing</td>
<td><a onclick="myFunction()">Delete</a></td>
</tr>
<tr>
<td>103</td>
<td>Mobiles Accessories</td>
<td>18-01-2019</td>
<td>All mobile accessories</td>
<td><a onclick="myFunction()">Delete</a></td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</main>
<script>
function myFunction() {
confirm("Are you sure?");
}
</script>
</body>
</html>