-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
29 lines (28 loc) · 1.15 KB
/
index.php
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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<title>Gasolineras VIP</title>
<link rel="icon" type="image/jpg" href="img/banner.jpg">
<meta name="viewport" content="width=device-width, user-scalable=yes, initial-scale=1.0, maximum-scale=3.0, minimum-scale=1.0">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.3/css/all.css" >
<link rel="stylesheet" href="css/login.css">
</head>
<body>
<form class="formulario" action="validar.php" method="post">
<h1>Iniciar Sesión</h1>
<div class="contenedor">
<div class="input-contenedor">
<i class="fas fa-envelope icon"></i>
<input type="text" name="email" placeholder="Correo Electronico">
</div>
<div class="input-contenedor">
<i class="fas fa-key icon"></i>
<input type="password" name="password" placeholder="Contraseña">
</div>
<input type="submit" value="INGRESAR" class="button">
<p>Al registrarte, aceptas nuestras Condiciones de uso y Política de privacidad.</p>
</div>
</form>
</body>
</html>