-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcontacto.html
More file actions
163 lines (123 loc) · 5.78 KB
/
contacto.html
File metadata and controls
163 lines (123 loc) · 5.78 KB
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>home</title>
<!--swiper css link -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.css"/>
<!--font awesome cdn link -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css">
<!-- custom css file -->
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<!--menu navegador -->
<section class="header">
<a href="index.html" class="logo"><img src="imagenes/Vivienda.png" alt="nombreViviendas UB" width="190px" heigth="70px"></a>
<nav class="navbar">
<a href="index.html">Home</a>
<a href="nosotros.html">Nosotros</a>
<a href="propiedades.html">Propiedades</a>
<a href="tasaciones.html">Tasaciones</a>
<a href="blog.html">Blog</a>
<a href="contacto.html" class="join-b">UNIRSE</a>
</nav>
<div id="menu-btn" class="fas fa-bars"></div>
</section>
<div class="heading" style="background:url(imagenes/heading2.jpg) no-repeat">
<h1>CONTACTANOS</h1>
</div>
<!--form -->
<section class="booking">
<h1 class="heading-title">FORMULARIO DE CONTACTO</h1>
<p>El equipo de Viviendas UB Urbana está a su disposición para ayudarlo en la venta, compra o alquiler de su propiedad.</p>
<p>Contáctenos para solicitar una tasación de un inmueble, ya sea que necesite tasar un departamento, casa, PH, terreno, oficina o local comercial.</p>
<p>Si está buscando para comprar una propiedad, puede tambien usar este formulario de contacto para recibir opciones de compra.</p>
<form id="contactForm" class="book-form">
<div class="flex">
<div class="inputBox">
<span>Nombre y apellido:</span>
<input type="text" placeholder="Ingrese su nombre" name="name" required>
</div>
<div class="inputBox">
<span>Mail:</span>
<input type="email" placeholder="Ingrese su mail" name="email" required>
</div>
<div class="inputBox">
<span>Telefono:</span>
<input type="number" placeholder="Ingrese su telefono" name="phone" required>
</div>
<div class="inputBox">
<span>Mensaje:</span>
<textarea placeholder="Escriba su consulta..." name="mensaje" required></textarea>
</div>
</div>
<input type="submit" value="Enviar" class="btn">
</form>
</section>
<!--footer -->
<section class="footer">
<div class="box-container">
<div class="box">
<h3>Atajos</h3>
<a href="index.html"> <i class="fa-solid fa-angle-right"></i> Home</a>
<a href="tasaciones.html"> <i class="fa-solid fa-angle-right"></i> Tasaciones</a>
<a href="propiedades.html"> <i class="fa-solid fa-angle-right"></i> Propiedades</a>
<a href="contacto.html"> <i class="fa-solid fa-angle-right"></i> UNIRSE</a>
</div>
<div class="box">
<h3>Informacion</h3>
<a href="preguntas.html"> <i class="fa-solid fa-angle-right"></i> Preguntas Frecuentes</a>
<a href="nosotros.html"> <i class="fa-solid fa-angle-right"></i> Sobre Nosotros</a>
<a href="politica.html"> <i class="fa-solid fa-angle-right"></i> Politica privada</a>
<a href="blog.html"> <i class="fa-solid fa-angle-right"></i> Blog</a>
</div>
<div class="box">
<h3>Contactos</h3>
<a href="https://wa.me/5491152591813?text=Hola, estoy interesada!!"> <i class="fas fa-phone"></i> +54 11 3377-0817 </a>
<a href="https://wa.me/5491152591813?text=Hola, estoy interesada!!"> <i class="fas fa-phone"></i> +54 11 3066-2123 </a>
<a href="mailto:viviendasub@gmail.com"> <i class="fas fa-envelope"></i> viviendasub@gmail.com </a>
<a href="https://maps.app.goo.gl/ukL3NsWvgiDo5aKh6"> <i class="fa-solid fa-location-dot"></i> CABA, Argentina - Zabala 1837</a>
</div>
<div class="box">
<h3>Redes sociales</h3>
<a href="https://www.facebook.com/?locale=es_LA"> <i class="fab fa-facebook-f"></i> Facebook </a>
<a href="https://x.com/home?lang=es"> <i class="fa-brands fa-twitter"></i> Twitter </a>
<a href="https://www.instagram.com/"> <i class="fa-brands fa-instagram"></i> Instagram </a>
<a href="https://ar.linkedin.com/"> <i class="fa-brands fa-linkedin"></i> Linkedin </a>
</div>
</div>
<div class="credit"> Copyright © Viviendas UB | Todos los derechos reservados. </div>
</section>
<!--swiper js link -->
<script src="https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.js"></script>
<!-- custom js file -->
<script src="js/script.js"></script>
<script>
document.getElementById("contactForm").addEventListener("submit", function(e) {
e.preventDefault();
const form = e.target;
const data = {
name: form.name.value,
email: form.email.value,
phone: form.phone.value,
mensaje: form.mensaje.value
};
fetch("https://script.google.com/macros/s/AKfycbzyEdWGU82tR2gd6PCttTErylBkdRhG6hsWeG_R7y2B33z8uPzMFCqJARf5PGV996Al2w/exec", {
method: "POST",
body: JSON.stringify(data)
})
.then(res => res.json())
.then(response => {
alert("Gracias por contactarte. ¡Tu mensaje fue enviado!");
form.reset();
})
.catch(error => {
alert("Hubo un error al enviar el formulario.");
console.error(error);
});
});
</script>
</body>
</html>