-
Notifications
You must be signed in to change notification settings - Fork 0
/
registro_producto.html
85 lines (85 loc) · 3.02 KB
/
registro_producto.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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Doguito Petshop | Registrar producto</title>
<link
href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css2?family=Pacifico&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="./assets/css/base/base.css" />
<link rel="stylesheet" href="./assets/css/componentes/header.css" />
<link rel="stylesheet" href="./assets/css/componentes/card.css" />
<link rel="stylesheet" href="./assets/css/registry_client.css" />
<link rel="stylesheet" href="./assets/css/componentes/inputs.css" />
<link rel="stylesheet" href="./assets/css/componentes/button.css" />
<link rel="stylesheet" href="./assets/css/cadastro_produto.css" />
</head>
<body>
<header class="cabecalho container">
<img
src="./assets/img/doguitoadm.svg"
alt="Logo Doguito"
class="cabecalho__logo"
/>
<nav>
<ul class="header__list-nav">
<li class="header__link"><a href="#">Dashboard</a></li>
<li class="header__link"><a href="#">Productos</a></li>
<li class="header__link">
<a href="lista_cliente.html">Clientes </a>
</li>
<li class="header__link"><a href="#">Pets</a></li>
</ul>
</nav>
</header>
<main class="container flex flex--center flex--column">
<section class="cartao cadastro">
<h1 class="card__title">Registrar producto</h1>
<form
action="./registro_producto_concluido.html"
class="flex flex--column"
>
<div class="input-container">
<input
name="name"
id="name"
class="input"
type="text"
placeholder="Nombre"
/>
<label class="input-label" for="name">Nombre</label>
<span class="input-message-error">Este campo no es valido</span>
</div>
<div class="input-container registry__price-container">
<input
name="price"
id="price"
class="input"
type="text"
placeholder="Precio"
/>
<label class="input-label" for="price">Precio</label>
<span class="input-message-error">Este campo no es valido</span>
</div>
<div class="input-container registry__description-container">
<input
class="input"
name="description"
id="description"
placeholder="Descripción"
/>
<label class="input-label" for="description">Descripción</label>
<span class="input-message-error">Este campo no es valido</span>
</div>
<button class="button">Registrar producto</button>
</form>
</section>
</main>
</body>
</html>