-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
72 lines (66 loc) · 2.75 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
<!DOCTYPE html>
<!-- saved from url=(0049)https://getbootstrap.com/docs/4.3/examples/album/ -->
<html lang="es">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<title>eMercado - Todo lo que busques está aquí</title>
<meta name="google-signin-scope" content="profile email">
<script src="https://apis.google.com/js/platform.js" async defer></script>
<meta name="google-signin-client_id"
content="197604950024-fugd34tfhhbi665fkvq0h4hjahjubf6j.apps.googleusercontent.com">
<link rel="canonical" href="https://getbootstrap.com/docs/4.3/examples/album/">
<link href="https://fonts.googleapis.com/css?family=Raleway:300,300i,400,400i,700,700i,900,900i" rel="stylesheet">
<!-- Bootstrap core CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/styles.css" rel="stylesheet">
<link href="css/signin.css" rel="stylesheet">
<style>
/*.bd-placeholder-img {
font-size: 1.125rem;
text-anchor: middle;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
@media (min-width: 768px) {
.bd-placeholder-img-lg {
font-size: 3.5rem;
}
}*/
</style>
</head>
<body class="text-center">
<div class="container p-5">
<div class="px-lg-5 py-lg-4 p-4">
<form class="form-signin mb-5" id="form-signin">
<!--<img class="mb-4" src="./img/cover_back.png" alt="" width="72" height="72">-->
<h1 class="h3 mb-4 font-weight-bold">Bienvenido!!! 😄</h1>
<div class="mb-4">
<label for="inputUserName" class="sr-only">Usuario</label>
<input type="text" id="inputUserName" class="form-control" placeholder="Ingresa tu nombre de usuario"
autofocus>
<small class="mt-2"id="errorUser"></small>
</div>
<div class="mb-4">
<label for="inputPassword" class="sr-only">Contraseña</label>
<input type="password" id="inputPassword" class="form-control" placeholder="Ingresa tu contraseña">
<small class="mt-2"id="errorPassword"></small>
<a href="#" id="passwordHelp" class="form-text ">¿Has olvidado tu
contraseña?</a>
</div>
<button class="btn btn-lg btn-primary btn-block" type="submit" onsubmit="saveUser(userName.value);">Iniciar
sesión</button>
<div class="mt-5">
<div class="g-signin2" data-onsuccess="onSignIn"></div>
</div>
<p class="fixed-bottom font-weight-bold text-muted">© 2021</p>
</form>
</div>
</div>
<script src="js/init.js"></script>
<script src="js/login.js"></script>
</body>
</html>