-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathedit-product.html
90 lines (82 loc) · 2.98 KB
/
edit-product.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Paiement</title>
<link rel="stylesheet" href="/css/edit-product.css" />
<link rel="stylesheet" href="/css/responsive.css" />
<script src="https://kit.fontawesome.com/1e6afd82c6.js" crossorigin="anonymous"></script>
<link rel="icon" type="image/jpg" href="assets/img/logo.png" />
</head>
<body>
<div class="container">
<header>
<nav class="nav-bar white-background">
<div class="background"></div>
<div class="shop-logo">
<a href="/">
<img src="assets/img/logo2.svg" alt="logo marque" />
<h1>Pear Vendor</h1>
</a>
</div>
<div class="links-menu">
<ul>
<li class="link">
<a href="/" class="selected">Accueil</a>
</li>
<li class="link sub-menu-parent">
<a href="/store.html" class="store-link">
Magasin
<i class="fa-solid fa-chevron-down"></i>
</a>
<ul class="sub-menu">
<li>
<a href="/category.html">Téléphones</a>
</li>
<li>
<a href="/category.html">Ordinateurs</a>
</li>
<li>
<a href="/category.html">Télévisions</a>
</li>
</ul>
</li>
<li class="link">
<a href="/account.html">Mon compte</a>
</li>
<li class="link">
<a href="/cart.html" class="cart-link">
<i class="fa-solid fa-cart-shopping"></i>
</a>
</li>
</ul>
</div>
</nav>
</header>
<section class="content-area">
<section class="edit-product-container">
<h1 class="page-title">Ajouter un produit</h1>
<div class="edit-product">
<form action="POST" class="edit-product-form">
<label for="productName">Nom du produit</label>
<input type="text" name="productName" id="productName" placeholder="ex: iphone 13" required />
<label for="productCategorie">Catégorie</label>
<input type="text" name="productCategorie" id="productCategorie" placeholder="ex: Smartphone" required />
<label for="productDescription">Description</label>
<input type="text" name="productDescription" id="productDescription" placeholder="ex: Angers" required />
<label for="productPrice">Prix</label>
<input type="text" name="productPrice" id="productPrice" placeholder="ex: 29.99" required />
<label for="productQuantity">Quantité</label>
<input type="text" name="productQuantity" id="productQuantity" placeholder="ex: 19" required />
<label for="productImage">Image</label>
<input type="file" name="productImage" id="productImage" accept="image/png"/>
<input type="submit" name="save" id="save" value="Enregistrer" class="red-button">
</form>
</div>
</section>
</section>
</div>
</body>
</html>