forked from open-elective/open-elective
-
Notifications
You must be signed in to change notification settings - Fork 0
/
reset.html
91 lines (79 loc) · 3.29 KB
/
reset.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
<!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">
<title>Reset Password</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css">
<link rel="stylesheet" href="css/index.css">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="icon" href="/assets/favicon/reset.png" type="image/gif" sizes="16x16">
</head>
<body>
<div class="home-overlay"></div>
<main class="login-card">
<div class="card white">
<div class="card-content black-text">
<span class="card-title center">
<h4>Forgot Password</h4>
</span>
<div>
<input id="studresetemail" type="email" placeholder="Email ID">
<small>Enter Official Mail-ID</small>
</div>
<div class="center">
<a class="waves-effect waves-light btn blue darken-2" id="forgotbtn" onclick="forgotpass(event)">Submit</a>
</div>
</div>
<div class="progress blue lighten-4" id="resetprogress">
<div class="indeterminate blue darken-2"></div>
</div>
</main>
<div class="fixed-action-btn toolbar">
<a class="btn-floating btn-large blue darken-2 ">
<i class="large material-icons">help</i>
</a>
<ul>
<li><a class="btn-floating">Developed By</a></li>
<li><a href="https://niranjangirhe.github.io/Connect-with-me/" target="_blank" class="btn-floating">Niranjan
Girhe</a></li>
<li><a href="https://my-links-97a35.web.app/" target="_blank" class="btn-floating ">Pratik
Kale</a></li>
<li><a href="/instructions.html" target="_blank" class="btn-floating "><i class="material-icons">help</i>Help</a>
</li>
</ul>
</div>
<script>
document.addEventListener('DOMContentLoaded', function () {
var elems = document.querySelectorAll('.fixed-action-btn');
var instances = M.FloatingActionButton.init(elems, {
toolbarEnabled: true
});
});
</script>
<!-- Compiled and minified JavaScript -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/js/materialize.min.js"></script>
<!--Firebase Connection-->
<!-- The core Firebase JS SDK is always required and must be listed first -->
<script src="https://www.gstatic.com/firebasejs/8.6.3/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.6.3/firebase-auth.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.6.3/firebase-firestore.js"></script>
<!-- TODO: Add SDKs for Firebase products that you want to use
https://firebase.google.com/docs/web/setup#available-libraries -->
<script>
// Your web app's Firebase configuration
var firebaseConfig = {
apiKey: "AIzaSyD9BHz-HTQl518KmUr1GHHx0IXJGj7bJP8",
authDomain: "openelectiveallocation.firebaseapp.com",
projectId: "openelectiveallocation",
storageBucket: "openelectiveallocation.appspot.com",
messagingSenderId: "953116708866",
appId: "1:953116708866:web:69c0de0ba08dda4efc971b"
};
// Initialize Firebase
firebase.initializeApp(firebaseConfig);
</script>
<script src="scripts/auth.js"></script>
</body>
</html>