-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnewProduct.html
31 lines (31 loc) · 1.01 KB
/
newProduct.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>newProduct</title>
</head>
<header>
<h1>new product</h1>
<menu>
<li><a href="D:\desarrollo1\the-store.html" target="new">products</a></li>
<li><a href="">car</a></li>
<li><a href="D:\desarrollo1\login.html" target="new">Login</a></li>
<li><a href="D:\desarrollo1\newProduct.html" target="new">New Product</a></li>
</menu>
</header>
<body>
<h2>new product</h2>
<div>
<form id="nuevoproducto">
<label for="name">name</label>
<input type="text" name="name" id="nproducto" required/>
<label for="price">price</label>
<input type="number" name="precio" id="valordenproduct" required/>
<label for="inventory">inventory</label>
<input type="number" name="inventario" id="ninventary" required/>
<button id="botondenproducto" onclick="nuevoproducto()">create product</button>
</form>
</div>
</body>
</html>