-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (40 loc) · 1.83 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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Login</title>
<meta name="description" content="Catalogo">
<meta name="author" content="">
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
</head>
<body>
<div class="container">
<div class="row">
<div class="page-header">
<h1 class="text-center"> Bienvenido a tu galeria de imagenes </h1>
</div>
</div>
<div class="container">
<div class="card card-container">
<!-- <img class="profile-img-card" src="//lh3.googleusercontent.com/-6V8xOA6M7BA/AAAAAAAAAAI/AAAAAAAAAAA/rzlHcD0KYwo/photo.jpg?sz=120" alt="" /> -->
<img id="profile-img" class="profile-img-card" src="img/user.png" />
<p id="profile-name" class="profile-name-card"></p>
<form class="form-signin" id="form_login">
<input type="hidden" name="peticion" value="validar_login">
<span id="reauth-email" class="reauth-email"></span>
<input name="par1" type="text" id="" class="form-control" placeholder="Nombre de usuario" required autofocus>
<input name="par2" type="password" id="inputPassword" class="form-control" placeholder="Contraseña" required>
<button class="btn btn-lg btn-primary btn-block btn-signin" type="submit">Iniciar sesión</button>
</form><!-- /form -->
</div><!-- /card-container -->
</div><!-- /container -->
</div>
<script src="js/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/URLs_servicios.js"></script>
<script src="js/login.js"></script>
</body>
</html>