-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathResetPassword.html
93 lines (73 loc) · 3.67 KB
/
ResetPassword.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<link rel="stylesheet" href="CSS Proyect/ResetPassword.css">
<!-- ------------ Material Design Iconic Font ------------ -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/material-design-iconic-font/2.2.0/css/material-design-iconic-font.min.css">
<title>Reset Password</title>
</head>
<body>
<div class="wrapper" style="background-image: url('images/Backgrounds/Pins1.png');">
<div class="inner">
<div class="image-holder">
<img src="images/Backgrounds/Pins2.png" alt="">
</div>
<form action="">
<h3>Forget Password?</h3>
<div class="form-group">
<p style="text-align: center;">
Please enter your email address bellow and we will send you information to recover your account.
</p>
</div>
<div class="form-wrapper">
<input id="email" type="email" placeholder="Email Address" class="form-control">
<i class="zmdi zmdi-email"></i>
</div>
<div class="form-group container-login100-form-btn">
<button id="btn-resetPassword" type="button">
Reset Password
<i class="zmdi zmdi-arrow-right"></i>
</button>
</div>
</form>
</div>
</div>
<!-- The core Firebase JS SDK is always required and must be listed first -->
<script src="https://www.gstatic.com/firebasejs/8.3.0/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.3.0/firebase-auth.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.3.0/firebase-firestore.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.3.0/firebase-functions.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/8.3.0/firebase-analytics.js"></script>
<script>
// Your web app's Firebase configuration
// For Firebase JS SDK v7.20.0 and later, measurementId is optional
var firebaseConfig = { //aquí,hasta 2020... era una var config
apiKey: "Your API key",
authDomain: "xxx.firebaseapp.com",
projectId: "xxx",
appId: "xxx",
measurementId: "xxx"
};
// Initialize Firebase
firebase.initializeApp(firebaseConfig);
firebase.analytics();
//make auth and firestore references
const auth = firebase.auth();
const db = firebase.firestore();
//OJO, iniciar aquí tmb las Cloud Functions
const functions = firebase.functions();
//update firestore settings
db.settings({ timestampsInSnapshots: true });
</script>
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"></script>
<script src="JS Proyect/ResetPassword.js"></script>
</body>
</html>