-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
144 lines (133 loc) · 5.58 KB
/
index.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
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
<!doctype html>
<html lang="es-419">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Favicon -->
<link rel="icon" type="image/x-icon" href="images/favicon_green_background.png" />
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<!-- Font Awesome -->
<script src="https://kit.fontawesome.com/88f405fd13.js" crossorigin="anonymous"></script>
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Roboto:400,700&display=swap" rel="stylesheet">
<!-- Custom CSS -->
<link rel="stylesheet" href="css/styles.css">
<title>pininos</title>
</head>
<body>
<!-- Introduction Section -->
<section id="introduction">
<div class="container-fluid">
<!-- Navigation Bar -->
<nav class="navbar navbar-dark">
<a class="navbar-brand mx-auto" href="#">pininos</a>
</nav>
<!-- Title + Form -->
<div class="row">
<div class="d-flex align-items-center col-lg-6">
<h1 class="">La red social privada para tu colonia</h1>
</div>
<div class="col-lg-6">
<form method="post" id="myForm">
<p>Introduce tu información y te avisaremos en cuanto esté listo el producto.</p>
<div class="form-group">
<label for="name">Nombre</label>
<input type="text" name="name" class="form-control" id="name" required>
</div>
<div class="form-group">
<label for="email">Correo electrónico</label>
<input type="email" name="email" class="form-control" id="email" required>
</div>
<div class="form-group">
<label for="city">Ciudad</label>
<input type="text" name="city" class="form-control" id="city" required>
</div>
<button type="submit" class="btn btn-primary btn-lg btn-block" id="form-submit">Enviar</button>
<div id="success-message" style="display:none;">
<p>¡Gracias! Nos comunicaremos contigo pronto.</p>
</div>
<div id="error-message" style="display:none;">
<p>Por favor llena los datos que hacen falta.</p>
</div>
</form>
</div>
</div>
</div>
</section>
<!-- Description Section -->
<section id="description">
<div class="container-fluid">
<div class="d-flex align-items-center row">
<div class="col-lg-6">
<p class="subtitle">Pininos es la mejor manera de estar al tanto de lo que pasa en tu colonia.</p>
<p>Ya sea para encontrar alguien que te ayude en casa, avisar que se te escapó tu perrito o mantenerte alerta de una oleada de robos, hay muchas formas en las que nuestros vecinos pueden ayudarnos.</p>
<p>Pininos es una manera más sencilla de estar en contacto con ellos.</p>
</div>
<div class="col-lg-6">
<img class="neighbors" src="images/ilustracion-vecinos-parque.png" alt="foto-vecinos">
</div>
</div>
</div>
</section>
<!-- Features Section -->
<section id="features">
<div class="row">
<div class="feature-box col-lg-4">
<i class="icon fas fa-comments fa-4x"></i>
<h3>Útil</h3>
<p>La forma más fácil de comunicarte cuando se ofrezca.</p>
</div>
<div class="feature-box col-lg-4">
<i class="icon fas fa-lock fa-4x"></i>
<h3>Privado</h3>
<p>Un espacio seguro donde cada vecino es verificado.</p>
</div>
<div class="feature-box col-lg-4">
<i class="icon fas fa-home fa-4x"></i>
<h3>Confiable</h3>
<p>Una comunidad construida por ti y tus vecinos.</p>
</div>
</div>
</section>
<!-- Footer Section -->
<section id="footer">
<div class="container">
<div class="row">
<div class="col">
<p>© 2019 Pininos. Todos los derechos reservados.</p>
</div>
</div>
</div>
</section>
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="https://code.jquery.com/jquery-3.4.1.min.js" integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo=" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-validate/1.19.1/jquery.validate.min.js"></script>
<script>
$('#myForm').validate();
// POST form data to Zapier on submit
$('#myForm').submit(function(e) {
e.preventDefault();
// Validation for empty fields
let valid = $.isEmptyObject($("#myForm").validate().invalid);
if (!valid) {
$('#error-message').fadeIn().delay(5000).fadeOut('slow');
return;
}
$.ajax({
url: 'https://hooks.zapier.com/hooks/catch/4287716/o6z42fc/',
type: 'post',
data: $('#myForm').serialize(),
success: function() {
$('#myForm')[0].reset();
$('#success-message').fadeIn().delay(5000).fadeOut('slow');
}
});
});
</script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
</body>
</html>