-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
71 lines (68 loc) · 2.83 KB
/
Copy pathindex.html
File metadata and controls
71 lines (68 loc) · 2.83 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Simple Dashboard</title>
<style>
body, html {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
background-image: url('https://source.unsplash.com/1600x900/?minecraft');
background-size: cover;
background-position: center;
color: #fff;
}
.dashboard-header {
background-color: rgba(51, 51, 51, 0.8);
color: #fff;
padding: 10px 20px;
text-align: center;
}
.dashboard-main {
display: flex;
justify-content: space-around;
padding: 20px;
}
.dashboard-section {
background-color: rgba(244, 244, 244, 0.8);
padding: 20px;
margin: 10px;
flex: 1;
color: #333;
}
.navigation {
text-align: center;
margin-top: 10px;
}
.navigation a {
color: #fff;
text-decoration: none;
margin: 0 15px;
background-color: rgba(0,0,0,0.5);
padding: 10px 15px;
border-radius: 5px;
}
.navigation a:hover {
background-color: rgba(255,255,255,0.25);
}
</style>
</head>
<body>
<div class="dashboard-header">
<h1>Welcome to the Minecraft Dashboard</h1>
</div>
<div class="navigation">
<a href="login.html">Login</a>
<a href="signup.html">Sign Up</a>
</div>
<div class="dashboard-main">
Welcome to the Minecraft Dashboard, CRALCK!
As you step into this central command center, you're at the helm of your Minecraft adventures. Here, every tool and resource you need to effectively manage your game worlds is just a click away. Whether you're adjusting settings through the Options page, monitoring server activity via the Console, or keeping an eye on player interactions, you've got everything you need to steer your course.
Venture into the Players section to see who's online and how they're progressing, or explore the Worlds tab to manage the various environments you've crafted. Secure access controls are readily accessible through the Access section, ensuring that your virtual realms remain safe and sound.
Thank you for choosing to manage your Minecraft universe with us, CRALCK. We're here to make sure that your journey is as smooth and enjoyable as possible. Should you have any questions or require assistance, our support team is always ready to help you navigate. Here's to many epic adventures and masterful creations! Happy crafting!
</div>
</div>
</body>
</html>