-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
119 lines (109 loc) · 3.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
<!DOCTYPE html>
<html lang="esp">
<head>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<link rel="icon" href="/docs/4.0/assets/img/favicons/favicon.ico" />
<title>Login Clínica</title>
<link
rel="canonical"
href="https://getbootstrap.com/docs/4.0/examples/floating-labels/"
/>
<!-- Bootstrap core CSS -->
<link
href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css"
rel="stylesheet"
/>
<!-- Custom styles for this template -->
<link href="floating_labels.css" rel="stylesheet" />
</head>
<body>
<form class="form-signin" id="formsignin">
<div class="text-center mb-4">
<img
class="mb-4"
src="https://github.com/AlejandroFajardo/MisionTIC2022/imagenes/logo.png"
alt=""
width="72"
height="72"
/>
<h1 class="h3 mb-3 font-weight-normal">Registro de usuario</h1>
<p>Bienvenido</p>
<p>Ingrese sus datos de usuario para acceder al portal de ventas</p>
</div>
<div class="form-label-group">
<input
type="email"
id="inputEmail"
class="form-control"
placeholder="Email address"
required
autofocus
/>
<label for="inputEmail">Correo electrónico</label>
</div>
<div class="form-label-group">
<input
type="password"
id="inputPassword"
class="form-control"
placeholder="Password"
required
/>
<label for="inputPassword">Contraseña</label>
</div>
<div class="checkbox mb-3">
<label>
<input type="checkbox" value="remember-me" /> Recuerdame
</label>
</div>
<button
class="btn btn-lg btn-primary btn-block"
id="signInBtn"
type="submit"
>
Acceder
</button>
<button
class="btn btn-lg btn-success btn-primary btn-block"
id="login-google"
type="button"
>
Acceder con google
</button>
<footer class="my-5 pt-5 text-muted text-center text-small">
<p class="mb-1">© 2017–2021 PDT</p>
<ul class="list-inline">
<li class="list-inline-item"><a href="#">Privacy</a></li>
<li class="list-inline-item"><a href="#">Terms</a></li>
<li class="list-inline-item"><a href="#">Support</a></li>
</ul>
</footer>
</form>
<!-- FIREBASE -->
<!-- The core Firebase JS SDK is always required and must be listed first -->
<script src="https://www.gstatic.com/firebasejs/7.15.1/firebase-app.js"></script>
<!-- TODO: Add SDKs for Firebase products that you want to use
https://firebase.google.com/docs/web/setup#available-libraries -->
<script src="https://www.gstatic.com/firebasejs/7.15.1/firebase-firestore.js"></script>
<script src="https://www.gstatic.com/firebasejs/7.14.4/firebase-auth.js"></script>
<script>
// Your web app's Firebase configuration
var firebaseConfig = {
apiKey: "AIzaSyBnjFiCsuDs2CFF2xHyBlvTlfZ3j1qkMq8",
authDomain: "crud-mt-2022.firebaseapp.com",
projectId: "crud-mt-2022",
storageBucket: "crud-mt-2022.appspot.com",
messagingSenderId: "1018603559623",
appId: "1:1018603559623:web:82b9c4a24bfa8e7af63ce2",
};
// Initialize Firebase
firebase.initializeApp(firebaseConfig);
const auth = firebase.auth();
</script>
<script src="main.js"></script>
</body>
</html>