-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathadmin.html
48 lines (39 loc) · 1.05 KB
/
admin.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
<!DOCTYPE html>
<html>
<head>
<title>Admin Dashboard</title>
<link rel="stylesheet" type="text/css" href="admin.css">
</head>
<body>
<h1>Admin Dashboard</h1>
<div id="products-container">
<h2>Product List</h2>
<table>
<thead>
<tr>
<th>ID</th>
<th>Name</th>
<th>Price</th>
<th>Picture</th>
<th>Actions</th>
</tr>
</thead>
<tbody id="product-list">
</tbody>
</table>
</div>
<div id="add-product-container">
<h2>Add New Product</h2>
<form id="add-product-form" enctype="multipart/form-data">
<label for="name">Name:</label>
<input type="text" id="name" name="name" required><br>
<label for="price">Price:</label>
<input type="number" id="price" name="price" required><br>
<label for="image">Image:</label>
<input type="file" id="image" name="image" accept="image/*" required><br>
<button type="submit">Add Product</button>
</form>
</div>
<script src="admin.js"></script>
</body>
</html>