-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanage-categories.html
144 lines (141 loc) · 4.46 KB
/
manage-categories.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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Web Project</title>
<!--Style-->
<link rel="stylesheet" href="style.css" />
<link
rel="stylesheet"
href="https://unicons.iconscout.com/release/v4.0.0/css/line.css"
/>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap"
rel="stylesheet"
/>
<!--End Of Style-->
</head>
<body>
<!--Navbar-->
<nav>
<div class="container nav_container">
<a href="index.html" class="nav_logo">Web</a>
<ul class="nav_items">
<li><a href="blog.html">Blog</a></li>
<li><a href="about.html">About</a></li>
<li><a href="services.html">Services</a></li>
<li><a href="contact.html">Contact</a></li>
<!-- <li><a href="signin.html">Sign In</a></li> -->
<li class="nav_profile">
<div class="avatar">
<img src="./images/avatar1.jpg" alt="Image not found" />
</div>
<ul>
<li><a href="dashboard.html">Dashboard</a></li>
<li><a href="logout.html">Log Out</a></li>
</ul>
</li>
</ul>
<button id="open_nav-btn"><i class="uil uil-bars"></i></button>
<button id="close_nav-btn"><i class="uil uil-multiply"></i></button>
</div>
</nav>
<!--End Of Navbar-->
<section class="dashboard">
<div class="container dashboard_container">
<button id="show_sidebar-btn" class="sidebar_toggle"><i class="uil uil-angle-right-b"></i></button>
<button id="hide_sidebar-btn" class="sidebar_toggle"><i class="uil uil-angle-left-b"></i></button>
<aside>
<ul>
<li>
<a href="add-post.html"
><i class="uil uil-pen"></i>
<h5>Add Post</h5></a
>
</li>
<li>
<a href="dashboard.html"
><i class="uil uil-postcard"></i>
<h5>Manage Posts</h5></a
>
</li>
<li>
<a href="add-user.html"
><i class="uil uil-user-plus"></i>
<h5>Add User</h5></a
>
</li>
<li>
<a href="manage-users.html"
><i class="uil uil-users-alt"></i>
<h5>Manage Users</h5></a
>
</li>
<li>
<a href="add-category.html"
><i class="uil uil-edit"></i>
<h5>Add Category</h5></a
>
</li>
<li>
<a href="manage-categories.html" class="active"
><i class="uil uil-list-ul"></i>
<h5>Manage Categories</h5></a
>
</li>
</ul>
</aside>
<main>
<h2>Manage Categories</h2>
<table>
<thead>
<th>
Title
</th>
<th>
Edit
</th>
<th>
Delete
</th>
</thead>
<tbody>
<tr>
<td>Travel</td>
<td><a href="edit-category.html" class="btn sm">Edit</a></td>
<td>
<a href="delete-category.html" class="btn sm danger"
>Delete</a
>
</td>
</tr>
<tr>
<td>Art</td>
<td><a href="edit-category.html" class="btn sm">Edit</a></td>
<td>
<a href="delete-category.html" class="btn sm danger"
>Delete</a
>
</td>
</tr>
<tr>
<td>Music</td>
<td><a href="edit-category.html" class="btn sm">Edit</a></td>
<td>
<a href="delete-category.html" class="btn sm danger"
>Delete</a
>
</td>
</tr>
</tbody>
</table>
</main>
</div>
</section>
<script src="main.js"></script>
</body>
</html>