-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy patheditar-cliente.html
89 lines (77 loc) · 3.54 KB
/
editar-cliente.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/style.css">
<title>CRM </title>
</head>
<body>
<div class="wrapper">
<aside>
<picture class="logo">
<source media="(min-width: 769px)" srcset="img/logo.png">
<source media="(max-width: 768px)" srcset="img/logo-movil.png">
<img src="img/logo.png" alt="logo">
</picture>
<nav>
<ul>
<li><a href="index.html"><img src="img/ico1.png"><span>Panel</span> </a> </li>
<li><a href="index.html"><img src="img/ico3.png"> <span>Clientes</span></a></li>
<li><a href="nuevo-cliente.html"><img src="img/ico7.png"><span>Nuevo Cliente</span> </a></li>
</ul>
</nav>
</aside>
<main>
<div class="wrapper_inner">
<h2>Hola Pam 👋🏼</h2>
<div class="box">
<h3>Editar Cliente</h3>
<form id="formulario" class="form">
<div>
<label for="nombre">Nombre</label>
<input
id="nombre"
name="nombre"
type="text"
placeholder="Nombre Cliente"
/>
</div>
<div>
<label for="email">Correo</label>
<input
id="email"
name="email"
type="email"
placeholder="Email Cliente"
/>
</div>
<div class="mb-4">
<label for="telefono">Teléfono</label>
<input
id="telefono"
name="telefono"
type="tel"
placeholder="Teléfono Cliente"
/>
</div>
<div class="mb-4">
<label for="empresa">Empresa</label>
<input
id="empresa"
name="empresa"
type="text"
placeholder="Empresa Cliente"
/>
</div>
<input type="hidden" name="id" id="id" value="">
<input
type="submit"
value="Actualizar Cliente"
/>
</form>
</main>
</div>
<script src="js/editarcliente.js"></script>
</body>
</html>