-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrefurbisher2.jsx
More file actions
38 lines (37 loc) · 1.39 KB
/
refurbisher2.jsx
File metadata and controls
38 lines (37 loc) · 1.39 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
import React from 'react'
import './refurbisher2.css';
export const Refurbishers = () => {
return (
<div>
<h2>List Your Refurbished Products</h2>
<form action="">
<br />
<label htmlFor="productName">Product Name:</label>
<input type="text" id="productName" name="productName" />
<br />
<label htmlFor="productDescription">Specifications:</label>
<textarea id="productDescription" name="productDescription"></textarea>
<br />
<label htmlFor="">
Parts Repaired:
</label>
<input type="text" id="partsRepaired" name="partsRepaired" />
<br />
<label htmlFor="OriginalPrice">Original Price:</label>
<input type="text" id="OriginalPrice" name="OriginalPrice" />
<br />
<label htmlFor="refurbishedPrice">Refurbished Price:</label>
<input type="text" id="refurbishedPrice" name="refurbishedPrice" />
<br />
<label htmlFor="warrantyPeriod">Warranty Period:</label>
<input type="number" id="warrantyPeriod" name="warrantyPeriod" />
<br />
<label htmlFor="productImage">Product Image:</label>
<input type="file" id="productImage" accept="image/*" name="productImage" />
<br />
<button type="submit">Submit</button>
</form>
</div>
)
}
export default Refurbishers;