-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathindex.html
98 lines (90 loc) · 3.8 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
<!DOCTYPE html>
<html lang="en">
<!-- head -->
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Figma htmlGenerator">
<meta name="author" content="htmlGenerator">
<title>Html Generated</title>
<link rel="icon" href="logo.png" type="image/x-icon">
<link href="https://fonts.googleapis.com/css?family=Roboto&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
<script src="//cdn.jsdelivr.net/npm/sweetalert2@11"></script>
</head>
<!-- hush -->
<body>
<div id="loading">
<!-- t -->
<img src="images/loading.gif" alt="">
</div>
<div class="e3_30">
<div class="e25_4">
<div class="e3_32"></div>
<div class="e40_28">
<div class="e13_4"></div>
<button class="e40_37" type="button" onclick="logIn()">LOG IN</button>
</div>
<div class="e40_35">
<div class="e40_36"></div>
<button class="e40_37" type="button" onclick="signUp()">SIGN UP</button>
</div>
<div class="e25_6">
<div class="e40_26"></div>
<input class="e11_10" type="password" id="password" placeholder="Password">
</div>
<div class="e70_2">
<div class="e70_3"></div>
<select class="e11_10" id="type" name="type">
<option value="Teacher">Teacher</option>
<option value="Student">Student</option>
</select>
</div>
<div class="e25_5">
<div class="e3_36"></div>
<input class="e11_10" type="email" id="mail" placeholder="Email">
</div>
<span class="e3_35">Login</span>
<div class="e61_2"></div>
<div class="e40_30" onclick="google()"></div>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"
integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo"
crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js"
integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49"
crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js"
integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy"
crossorigin="anonymous"></script>
<!-- Firebase -->
<script src="https://www.gstatic.com/firebasejs/5.9.4/firebase.js"></script>
<script src="https://www.gstatic.com/firebasejs/7.3.0/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/7.3.0/firebase-analytics.js"></script>
<script src="https://www.gstatic.com/firebasejs/6.1.1/firebase-auth.js"></script>
<script src="https://www.gstatic.com/firebasejs/6.1.1/firebase-database.js"></script>
<!-- Your Firebase configuration -->
<script>
const firebaseConfig = {
apiKey: "your-api-key",
authDomain: "your-auth-domain",
projectId: "your-project-id",
storageBucket: "your-storage-bucket",
messagingSenderId: "your-messaging-sender-id",
appId: "your-app-id",
measurementId: "your-measurement-id",
databaseURL: "your-database-url"
};
firebase.initializeApp(firebaseConfig);
firebase.analytics();
firebase.database();
</script>
<script src="firebase.js"></script>
<script type="text/javascript">
window.onload = function () {
document.getElementById("loading").style.display = "none";
}
</script>
</body>
</html>