-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsplash.html
46 lines (38 loc) · 1.55 KB
/
splash.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
<!DOCTYPE html>
<html>
<link rel="stylesheet" type="text/css" href="postQuestion.css">
<link rel="stylesheet" type="text/css" href="splash.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://fonts.googleapis.com/css?family=Oswald" rel="stylesheet">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<head>
<title>Splash</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
</head>
<body background="background.jpg" >
<main>
<header class="app_header" ></header>
<center>
<img src="logo.png" class="logo" style="margin-top: 7%"></img>
<div style="margin-top: 2%">
<button id="login" class="button-intro button-hover" onclick="handleLogin();" style="margin: 1%;height: 2.5em"> LOG IN </button>
</div>
<div>
<button id="signup" class="button-intro button-hover" onclick="handleSignup();" style="margin: 1%;height: 2.5em"> SIGN UP </button>
</div>
<div class="footer"></div>
</center>
</body>
<script src="/socket.io/socket.io.js"></script>
<script src="/browserfs.min.js"></script>
<script type="text/javascript">
const handleLogin = () => {
window.open("http://52.170.186.150:3000/login", "_self");
};
const handleSignup = () => {
window.open("http://52.170.186.150:3000/signup", "_self");
};
</script>
</html>