-
Notifications
You must be signed in to change notification settings - Fork 0
/
contactUs.html
89 lines (77 loc) · 4.24 KB
/
contactUs.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="./assets/css/bootstrap.min.css" />
<link rel="stylesheet" href="assets/css/adminEstilos.css" />
<link rel="stylesheet" href="assets/css/normalize.css" />
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300&family=Poppins:wght@400;500;700&display=swap" rel="stylesheet" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/glider.min.css" />
<title>Contact Us</title>
</head>
<body>
<div class="container1 ">
<div class="header">
<div class="dropdown dropDown">
<button class="btn btn-secondary dropdown-toggle" type="button" id="dropdownMenuButton2" data-bs-toggle="dropdown" aria-expanded="false">
Usuarios
</button>
<ul class="dropdown-menu dropdown-menu-dark" aria-labelledby="dropdownMenuButton2">
<li><a class="dropdown-item " href="#">Jose Garcia</a></li>
<li><a class="dropdown-item" href="#">Alejandra Perez</a></li>
<li><a class="dropdown-item" href="#">Daniel Perez</a></li>
</ul>
</div>
</ul>
<div>
<p>ADMINISTRADOR DIOS</p>
</div>
<input class="searchBtn btn btn-secondary " type="button" value="Buscar">
</div>
<div class="navBar">
<div class="navBar_item-imageContainer">
<img src="assets/images/LogotipoBlanco.png" alt="">
</div>
<div class="navBar_item-assets">
<a href="./webAdmin.html"><img src="assets/images/home_icon.png" alt=""></a>
<a href=""><img src="assets/images/empresa-icon.png" alt=""> </a>
<a href="./pagoProveedores.html"><img src="assets/images/pagos_icon.png" alt=""></a>
</div>
<div class="navBar_item-assets">
<a href="">
<img src="assets/images/email_icon.png" alt="">
</a>
<a href=""> <img src="assets/images/settings_icon.png" alt=""></a>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js " integrity="sha384-q2kxQ16AaE6UbzuKqyBE9/u/KzioAlnx2maXQHiDX9d4/zp8Ok3f+M7DPm+Ib6IU " crossorigin="anonymous "></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js " integrity="sha384-pQQkAEnwaBkjpqZ8RU1fF1AKtTcHJwFl3pblpTlHXybJjHpMYo79HY3hIi4NKxyj " crossorigin="anonymous "></script>
<script src="https://kit.fontawesome.com/095056a418.js " crossorigin="anonymous "></script>
<div class=" contactContainer">
<div class="contactText">
<h1>ESCRÍBENOS</h1>
<p>Lorem ipsum, dolor sit amet consectetur adipisicing elit. Accusamus ad.</p>
</div>
<div class="formContainerContact">
<div class="contactCardForm">
<div class="mb-3">
<label for="exampleFormControlInput1" class="form-label"></label>
<input type="email" class="form-control mail" id="exampleFormControlInput1" placeholder=" Correo electrónico">
</div>
<div class="mb-3">
<label for="exampleFormControlInput1" class="form-label"></label>
<input type="text" class="form-control naME" id="exampleFormControlInput1" placeholder=" Nombre completo">
</div>
<div class="mb-3">
<label for="exampleFormControlTextarea1" class="form-label"></label>
<textarea class="form-control textArea " id="exampleFormControlTextarea1" rows="3" placeholder="Escribe tu mensaje"></textarea>
</div>
<div class="col-auto">
<a href="./contactUsSuccess.html"><button type="submit" class="btn btn-primary btnTextArea mb-3">Enviar</button></a>
</div>
</div>
</div>
</div>
</body>
</html>