forked from open-elective/open-elective
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
109 lines (95 loc) · 4.45 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
<!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>Open Elective Allocation Portal</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" href="css/index.css">
<link rel="icon" href="/assets/favicon/index.png" type="image/gif">
</head>
<body>
<div class="home-overlay"></div>
<h3 class="center">Welcome to Open Elective Allocation Portal</h3>
<main class="login-card">
<div class="card white">
<span class="card-title center">
<h4>Login</h4>
</span>
<div class="center"><img id="clglogo" src="/assets/logo.png" alt="MITAOE Logo"></div>
<div class="card-content">
<form>
<div>
<input id="loginemail" type="email" placeholder="Email ID">
<small>Enter Official Mail-ID</small>
</div>
<div>
<input id="loginpassword" type="password" placeholder="Password">
</div>
<div id="bottom-text" class="center">
<a href="reset.html" target="_blank">Forgot Password</a>
</div>
<div class="center">
<a href="signup.html">Sign Up</a>
</div>
<div id="breathing-button" class="center"><a href="/instructions.html" target="_blank"><i
class="material-icons">info</i></a></div>
<div class="center">
<a class="waves-effect waves-light btn blue darken-2" id="login"
onclick="login(event)">Login</a>
</div>
</form>
</div>
<div class="progress blue lighten-4" id="loginprogress">
<div class="indeterminate blue darken-2"></div>
</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>
<!-- 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>
document.addEventListener('DOMContentLoaded', function () {
var elems = document.querySelectorAll('.fixed-action-btn');
var instances = M.FloatingActionButton.init(elems, {
toolbarEnabled: true
});
});
</script>
<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>