-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (27 loc) · 882 Bytes
/
index.html
File metadata and controls
33 lines (27 loc) · 882 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>homepage for spacetraders UI</title>
<meta name="viewport" content="width=device-width, initial-scale=1.1">
<meta name="keywords" content="homepage">
<link rel="stylesheet" href="style/dist/main.css">
</head>
<body>
<div class="welcome">
<span class="title">welcome to</span>
<h1 class="title">SPACETRADERS</h1>
</div>
<div class="apiStatus">
<span class="status title">Server Status:</span>
<span class="unique_response" id="serverStatus"></span>
</div>
<div class="newPlayer">
<h3 class="title">New Player?</h2>
<span class="title">sign up!</span>
<input type="text" id="newUser">
<button class="response">enter Username</button>
<p class="newPlayerResponse"></p>
</div>
<script src="JS/main.js"></script>
</body>
</html>