Update Milestone 6 authored by Kun Niu (kun869)'s avatar Kun Niu (kun869)
...@@ -24,3 +24,30 @@ User Story: As a clothes maker, I need the website to give some display boards o ...@@ -24,3 +24,30 @@ User Story: As a clothes maker, I need the website to give some display boards o
** Code ** ** Code **
[Transfast.zip](uploads/3bbd1079df5d6c9b991f889f566b533b/Transfast.zip) [Transfast.zip](uploads/3bbd1079df5d6c9b991f889f566b533b/Transfast.zip)
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>upload item</title>
</head>
<body>
<form action="upload.php" method="post" enctype="multipart/form-data">
Select image to upload:
<br>
<input type="file" name="fileToUpload" id="fileToUpload">
<br>
<label>Product Name</label><br><input type="text">
<br>
<label for="">Price</label><br><input type="text">
<br>
<label for="">Description</label><br><input type="text">
<br>
<input type="submit" value="submit" name="submit">
</form>
</body>
</html>
\ No newline at end of file