-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.html
30 lines (30 loc) · 1.3 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" type="image/x-icon" href="images/favicon.ico"/>
<title>Terraria server - Loading...</title>
<script src="index.js"></script>
<script src="https://cdn.tailwindcss.com"></script>
<style>
.body-bg-image {
background-image: url("images/terraria.png");
}
</style>
</head>
<body class="bg-[#53aeb4] body-bg-image bg-no-repeat bg-top pt-6 md:p-8 text-center text-black text-4xl font-medium font-mono flex justify-center">
<div class="bg-pink-300/75 space-y-6 rounded-3xl py-10 col-start-2 w-96">
<p class="text-purple-700 font-bold">Default Server (replace this text with the name of your server)</p>
<div id="current-state">
Status: Loading...
</div>
<button class="py-2 px-4 font-semibold rounded-lg shadow-md text-white bg-green-500 hover:bg-green-700" id="change-state">
Loading...
</button>
<h2 class="text-gray-500">Enter password:</h2>
<input class="w-40 px-2 py-1 bg-gray-100 rounded-lg shadow-md" id="password" type="password"></input>
</div>
</body>
</html>