-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
62 lines (48 loc) · 1.76 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
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
<link rel="stylesheet" href="CSS/register.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://kit.fontawesome.com/59aed36701.js" crossorigin="anonymous"></script>
<script src="https://www.gstatic.com/firebasejs/7.17.2/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/7.17.2/firebase-auth.js"></script>
<!-- <script src="https://www.gstatic.com/firebasejs/7.2.3/firebase-app.js"></script> 7.17.1 -->
<script src="https://www.gstatic.com/firebasejs/7.17.2/firebase-firestore.js"></script>
<script>
var firebaseConfig = {
apiKey: "AIzaSyDRIMBhn--t15-3ZHrjDXussUSy5FbqvUQ",
authDomain: "mipc-82f6d.firebaseapp.com",
databaseURL: "https://mipc-82f6d.firebaseio.com",
projectId: "mipc-82f6d",
storageBucket: "mipc-82f6d.appspot.com",
messagingSenderId: "899225335434",
appId: "1:899225335434:web:ec2f1ff3f409b1c47d9f73",
measurementId: "G-L08R0ELNPG"
};
firebase.initializeApp(firebaseConfig);
</script>
<script src="https://www.gstatic.com/firebasejs/7.17.1/firebase-analytics.js"></script>
</head>
<body>
<header>
<div class="logInBox">
<div class="logBox">
<i class="fas fa-user-circle"></i>
<input id="logEmail" type="text" placeholder="UserName" name="" value="">
</div>
<div class="logBox">
<i class="fas fa-key"></i>
<input id="logPass" type="password" placeholder="Password" name="" value="">
</div>
<a onclick="login()" class="button">Log In</a>
</div>
</header>
<footer>
<ul>
<li><a href="register.html">Register</a></li>
</ul>
</footer>
<script src="javaScript/script.js"></script>
</body>
</html>