-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadd_clothes.php
More file actions
27 lines (24 loc) · 801 Bytes
/
add_clothes.php
File metadata and controls
27 lines (24 loc) · 801 Bytes
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
<html>
<head>
<meta charset="UTF-8">
<title>Add new PRODUCT</title>
</head>
<body bgcolor="#add8e6">
<p><b><h2><center>Add New Product</center></h2></b></p>
<center><form action="insert_cloth.php" method="post">
CODE:<input type="number" name="code" ><br>
TITLE: <input type="text" name="title" ><br>
Description: <input type="text" name="description" ><br>
TYPE: <input type="text" name="type" ><br>
SIZE: <select name="size">
<option value="Large">Large</option>
<option value="X-Large">X-Large</option>
<option value="Small">Small</option>
</select>
<br>
<input type="submit" value="Submit"><br>
</form>
</center>
<br><center><div id="button"><a href="logout.php">LOGOUT</a></div></center>
</body>
</html>