-
Notifications
You must be signed in to change notification settings - Fork 0
/
Action.html
56 lines (55 loc) · 1.73 KB
/
Action.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="style.css">
<title>Store Manager</title>
</head>
<body>
<header>
<div class="topnav"id="myTopnav">
<a href="adminhomepage.html">All Products</a>
<a href="adminsales.html"> Total Sales</a>
<a href="attendantsales.html">Attendant Sales</a>
<a href="Action.html">Action</a>
<a href="adduser.html">Add User</a>
<div class = "search">
<input type="text" placeholder="Filter by Attendant name..">
</div>
<div class="topnav-right">
<div class="dropdown">
<button class="dropbtn">Account
<i class="fa fa-caret-down"></i>
</button>
<div class="dropdown-content">
<a href="adminprofile.html">Profile</a>
<a href="index.html">Logout</a>
</div>
</div>
</div>
</header>
<h1>UPDATE INVENTORY</h1>
<div class = "card">
<div class = "container2">
<form>
<h3>Product Name</h3>
<input type="text" value="" id="myInput"><br>
<h3>Category</h3>
<input type="text" value="" id="myInput"><br>
<h3>Price</h3>
<input type="text" value="" id="myInput"><br>
<h3>Description</h3>
<textarea rows="4" cols="50"></textarea><br><br>
<input type="button" class="Modify" value = "Modify">
<input type="button" class="Add Item" value = "Add Item">
<input type="button" class="delete" value = "Delete">
</form>
</div>
</div>
<div class="footer">
<p>Copyrights 2018</p>
</div>
</body>
</html>