-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
37 lines (31 loc) · 1.26 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
30
31
32
33
34
35
36
37
<!DOCTYPE html>
<html >
<head>
<meta charset="UTF-8">
<title>Clientes</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css">
<link rel='stylesheet prefetch' href='http://fonts.googleapis.com/css?family=Roboto:400,100,300,500,700,900'>
<link rel='stylesheet prefetch' href='http://fonts.googleapis.com/css?family=Montserrat:400,700'>
<link rel='stylesheet prefetch' href='https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css'>
<link rel="stylesheet" href="template/css/style.css">
<link rel="stylesheet" href="template/css/validation.css">
</head>
<body>
<div class="container">
<div class="info">
<h1>Iniciar Sesion</h1>
<h2>Gimnasios</h2>
</div>
</div>
<div class="form">
<div class="thumbnail"><img src="dumbbell(1).png"/></div>
<form class="login-form" action="validacion.php" method="POST">
<input type="email" placeholder="correo" id="usuario" name="user" required="" />
<input type="password" placeholder="contraseña" id="pass" name="pass" required="" />
<button type="submit">login</button>
</form>
</div>
<script src='http://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.2/jquery.min.js'></script>
<script src="template/js/index.js"></script>
</body>
</html>