-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (35 loc) · 2.04 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="structure/style.css">
<title>JavaScript Simple Login System</title>
<link href='https://fonts.googleapis.com/css?family=Quicksand' rel='stylesheet'>
<script type="module">
// Import the functions you need from the SDKs you need import { initializeApp } from "https://www.gstatic.com/firebasejs/9.10.0/firebase-app.js"; import { getAnalytics } from "https://www.gstatic.com/firebasejs/9.10.0/firebase-analytics.js"; // TODO:
Add SDKs for Firebase products that you want to use // https://firebase.google.com/docs/web/setup#available-libraries // Your web app's Firebase configuration // For Firebase JS SDK v7.20.0 and later, measurementId is optional const firebaseConfig
= { apiKey: "AIzaSyB2nAld9umyImv8SQt5kJxRMIiUcbLWmuE", authDomain: "eleqtus-dd133.firebaseapp.com", projectId: "eleqtus-dd133", storageBucket: "eleqtus-dd133.appspot.com", messagingSenderId: "209389905137", appId: "1:209389905137:web:cb90ebf929964466173550",
measurementId: "G-GPBK2FCGGT" }; // Initialize Firebase const app = initializeApp(firebaseConfig); const analytics = getAnalytics(app);
</script>
</head>
<body>
<!--<img src="img/virkerikke.jfif" class="screenError" alt="">-->
<div class="pattern">
<div class="layer">
<img src="structure/img/Eleqtus_light.png" class="login-logo">
<section class="login-content">
<p class="login-p">Log In</p>
<form class="login-form">
<input type="text" id="username" placeholder="Email" class="login-username" />
<input type="password" id="password" placeholder="Password" class="login-password" />
<button type="button" onclick="getInfo()">Log In</button>
</form>
</section>
</div>
</div>
<div class="buttom-box">
<img src="structure/img/logomark.png" class="bird">
<p>Problems with Log In? click here</p>
</div>
<script src="script.js"></script>
</body>
</html>