-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreset-password.html
54 lines (54 loc) · 2.3 KB
/
reset-password.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="img/chick.svg" sizes="400x" >
<link rel='stylesheet' href="css/login_form.css">
<link rel='stylesheet' href="css/registration.css">
<script src="https://smtpjs.com/v3/smtp.js"></script>
<title>Reset Password</title>
</head>
<body>
<div class="outer">
<center>
<div class="inner1">
<img src="./img/chick.svg" alt="img" id="chick">
<h1>Eggcare</h1>
<form autocomplete="off" class="form-group" action="#" id="signup-form">
<input onkeyup="mail_check()" type="email" placeholder="Mail-Id" name="email" id="email" class='common' required><br>
<div class="email_error_box">Please Enter valid mail id</div>
<div class="instruction1">Reset password Link will be sent to the above given email address. Link Expires in 30 minutes.</div><br>
<button type="submit" class="submit" onclick="resetPassword()">Reset</button><br>
<b><span id="subtext1"></span></b><br>
<div class="signup">
<h2>back to Login-> <a href="login.html"><b>SignIn</b></a></h2>
</div>
</form>
</div>
</center>
</div>
<script src="https://www.gstatic.com/firebasejs/8.3.0/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/7.17.1/firebase-auth.js"></script>
<script src="https://www.gstatic.com/firebasejs/7.17.1/firebase-firestore.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.3.0/firebase-analytics.js"></script>
<script>
var firebaseConfig =
{
apiKey: "AIzaSyC1UPeCM8havf8lspXd3dDpo4lYVV9UQMs",
authDomain: "egg-care-product.firebaseapp.com",
projectId: "egg-care-product",
storageBucket: "egg-care-product.appspot.com",
messagingSenderId: "263365711071",
appId: "1:263365711071:web:7b68ae842d5ffbb846456a",
measurementId: "G-Q8DLPJP5R3"
};
firebase.initializeApp(firebaseConfig);
firebase.analytics();
const auth = firebase.auth();
const db = firebase.firestore();
</script>
<script src="js/reset.js"></script>
</body>
</html>