forked from FamesStore/scratchProject
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathitems.html
More file actions
49 lines (45 loc) · 1.28 KB
/
items.html
File metadata and controls
49 lines (45 loc) · 1.28 KB
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
<html>
<head>
<meta charset="UTF-8">
<title>Fame's Store</title>
<!-- comment out the below link tags when bundling styles with webpack -->
<!-- <link rel="stylesheet" href="client/stylesheets/styles.css"> -->
</head>
<body>
<h1>Fame's Store</h1>
<div id="root">
<form method="POST" action="/addItem">
<label>SELL ITEM</label><br>
<div>
<label for="name">NAME:</label>
<input type="text" name="itemName">
</div>
<div>
<label for="description">DESCRIPTION:</label>
<input type="text" name="itemDescription">
</div>
<div>
<label for="price">PRICE:</label>
<input type="text" name="itemPrice">
</div>
<div>
<label for="category">CATEGORY:</label>
<input type="text" name="itemCategory">
</div>
<div>
<label for="quantity">QUANTITY:</label>
<input type="text" name="itemQuantity">
</div>
<div>
<label for="condition">CONDITION:</label>
<input type="text" name="itemCondition">
</div>
<input type="submit" value="ADD USER">
</form>
</div>
<!-- bundle for gulp build -->
<!-- <script src="build/bundle.js"></script> -->
<!-- uncomment below and comment out the tag above for webpack challenge -->
<!--<script src="build/webpack-bundle.js"></script>-->
</body>
</html>