-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaddNewProduct.html
35 lines (35 loc) · 1.48 KB
/
addNewProduct.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
<!DOCTYPE html>
<!--
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
-->
<html>
<head>
<title>新增商品</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<form action="Product/InsertProduct.php" method="POST" enctype="multipart/form-data">
<label>商品名稱</label><input type="text" name="ptName" /><br>
<label>售價</label><input type="number" name="ptPrice" min="0" /><br>
<label>數量</label><input type="number" name="ptStock" min="0" /><br>
<label>圖檔(檔案最大3MB)</label><input type="file" name="ptImgUrl" id="ptImgUrl" /><br>
<label>商品敘述</label><textarea name="ptDesc"></textarea><br>
<label>商品分類</label>
<select name="ptCategory">
<option value="00">化妝品</option>
<option value="200">衣服</option>
<option value="300">包款</option>
<option value="400">鞋子</option>
</select><br>
<label>商品型態</label>
<select name="ptType">
<option value="00">現貨</option>
<option value="10">預購</option>
</select><br>
<input type="submit" value="新增" />
</form>
</body>
</html>