-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
138 lines (135 loc) · 4.91 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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AICTE Portal - Gowtham</title>
<link rel="stylesheet" href="aicte_style.css">
</head>
<body>
<div id="container" class="container">
<!-- FORM SECTION -->
<div class="row">
<!-- SIGN UP -->
<div class="col align-items-center flex-col sign-up">
<div class="form-wrapper align-items-center">
<div class="form sign-up">
<div class="input-group">
<i class='bx bxs-user'></i>
<input type="text" id="signup-name" placeholder="Username">
</div>
<div class="input-group">
<i class='bx bx-mail-send'></i>
<input type="email" id="signup-email" placeholder="Email">
</div>
<div class="input-group">
<i class='bx bxs-lock-alt'></i>
<input type="password" id="signup-password" placeholder="Password">
</div>
<div class="input-group">
<i class='bx bxs-lock-alt'></i>
<input type="password" id="signup-confirm-password" placeholder="Confirm password">
</div>
<button onclick="signup()">
Sign up
</button>
<p>
<span>
Already have an account?
</span>
<b onclick="toggle()" class="pointer">
Sign in here
</b>
</p>
</div>
</div>
</div>
<!-- END SIGN UP -->
<!-- SIGN IN -->
<div class="col align-items-center flex-col sign-in">
<div class="form-wrapper align-items-center">
<div class="form sign-in">
<div class="input-group">
<i class='bx bxs-user'></i>
<input type="text" id="login-username" placeholder="Username">
</div>
<div class="input-group">
<i class='bx bxs-lock-alt'></i>
<input type="password" id="login-password" placeholder="Password">
</div>
<button onclick="login()">
Sign in
</button>
<p>
<b>
Forgot password?
</b>
</p>
<p>
<span>
Don't have an account?
</span>
<b onclick="toggle()" class="pointer">
Sign up here
</b>
</p>
</div>
</div>
<div class="form-wrapper"></div>
</div>
<!-- END SIGN IN -->
</div>
<!-- END FORM SECTION -->
<!-- CONTENT SECTION -->
<div class="row content-row">
<!-- SIGN IN CONTENT -->
<div class="col align-items-center flex-col">
<div class="text sign-in">
<h2>
Welcome BACK! <br><br>
AICTE MODEL CURRICULUM <br>
development Portal
</h2>
</div>
<div class="img sign-in"></div>
</div>
<!-- END SIGN IN CONTENT -->
<!-- SIGN UP CONTENT -->
<div class="col align-items-center flex-col">
<div class="img sign-up"></div>
<div class="text sign-up">
<h2>
Welcome to AICTE MODEL CURRICULUM <br> development Portal
</h2>
</div>
</div>
<!-- END SIGN UP CONTENT -->
</div>
<!-- END CONTENT SECTION -->
</div>
<!-- Firebase and other JavaScript files -->
<!-- Firebase and other JavaScript files -->
<script type="module">
// Import the functions you need from the SDKs you need
import { initializeApp } from "https://www.gstatic.com/firebasejs/10.4.0/firebase-app.js";
import { getAnalytics } from "https://www.gstatic.com/firebasejs/10.4.0/firebase-analytics.js";
import { getAuth } from "https://www.gstatic.com/firebasejs/10.4.0/firebase-auth.js";
// Your web app's Firebase configuration
// For Firebase JS SDK v7.20.0 and later, measurementId is optional
const firebaseConfig = {
apiKey: "AIzaSyAAqCb80lIC0-Dp6buiUALNk9AL406epd4",
authDomain: "aicte-curriculum.firebaseapp.com",
projectId: "aicte-curriculum",
storageBucket: "aicte-curriculum.appspot.com",
messagingSenderId: "354668287037",
appId: "1:354668287037:web:65c067b3fae53aa672c654",
measurementId: "G-QLZ5HNE30Q"
};
// Initialize Firebase
const app = initializeApp(firebaseConfig);
const analytics = getAnalytics(app);
const auth = getAuth(app); // Initialize Firebase Authentication
</script>
<script src="app.js"></script>
</body>
</html>