-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
57 lines (44 loc) · 1.88 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
<!doctype html>
<html>
<head>
<title>Olog · A versatile platform that allows easy access to neural networks</title>
<meta charset="UTF-8">
<meta name="description" content="Olog is a versatile platform that allows easy access to neural networks">
<meta name="keywords" content="neural networks,platform,drive,olog,math,data science">
<meta name="author" content="Olog">
<meta name="robots" content="index">
<meta name="viewport" content="initial-scale=1.0">
<link rel="stylesheet" href="styles/master.css">
<link rel="stylesheet" href="styles/fonts.css">
<link rel="stylesheet" href="styles/style.css">
<link rel="stylesheet" href="styles/landing.css">
<link rel="icon" type="image/png" href="assets/favicon/favicon-32x32.png" sizes="32x32" />
<link rel="icon" type="image/png" href="assets/favicon/favicon-16x16.png" sizes="16x16" />
<!-- Externals -->
<script src="externals/firebase/firebase.js" type="text/javascript"></script>
</head>
<body class="universal__fontface">
<script type="text/javascript">
firebase.auth().onAuthStateChanged(function(user) {
if (user) {
window.location.href = "dashboard.html";
}
})
</script>
<div id="main-jumbo" class="universal__jumbo">
<div id="main-jumbo__actionWrapper">
<img id="actionWrapper__logo" src="assets/Icon1086x1125.png">
<p id="actionWrapper__text">Olog is a versatile platform that allows easy access to neural networks</p>
<div id="actionWrapper__buttonWrapper">
<input id="buttonWrapper__button" type="button" value="GET STARTED">
</div>
</div>
</div>
<script type="text/javascript" src="js/main.js"></script>
<script>
document.getElementById("buttonWrapper__button").addEventListener("click", function() {
window.location.href = "oauth.html";
})
</script>
</body>
</html>