Spaces:
Running
Running
File size: 80,904 Bytes
b9c53ec | 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 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 | <!DOCTYPE html>
<html lang="en" class="dark">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sahaj33 Server Manager</title>
<script src="https://cdn.tailwindcss.com"></script>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap" rel="stylesheet">
<script src="https://unpkg.com/feather-icons"></script>
<style>
:root {
--bg-primary: #1e1e2e;
--bg-secondary: #2a2a3a;
--accent: #00b894;
--text-primary: #e2e8f0;
--text-secondary: #94a3b8;
}
body {
font-family: 'Inter', sans-serif;
background-color: var(--bg-primary);
color: var(--text-primary);
}
.mono {
font-family: 'JetBrains Mono', monospace;
}
.card {
background-color: var(--bg-secondary);
border-radius: 2rem;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.btn {
border-radius: 2rem;
padding: 0.75rem 1.5rem;
font-weight: 500;
transition: all 0.2s;
}
.btn-primary {
background-color: var(--accent);
color: white;
}
.btn-primary:hover {
background-color: #00a884;
transform: translateY(-1px);
}
.btn-primary:active {
transform: translateY(0);
}
.btn-secondary {
background-color: var(--bg-secondary);
border: 1px solid #3f3f5a;
}
.btn-secondary:hover {
background-color: #3a3a4a;
border-color: var(--accent);
}
.input-field {
background-color: #2a2a3a;
border: 1px solid #3f3f5a;
border-radius: 2rem;
padding: 0.75rem 1.5rem;
color: var(--text-primary);
}
.input-field:focus {
outline: none;
border-color: var(--accent);
}
.sidebar-item {
padding: 0.75rem 1.5rem;
border-radius: 2rem;
transition: all 0.2s;
}
.sidebar-item:hover {
background-color: #3a3a4a;
}
.sidebar-item.active {
background-color: var(--accent);
color: white;
}
.status-badge {
display: inline-flex;
align-items: center;
padding: 0.25rem 0.75rem;
border-radius: 2rem;
font-size: 0.875rem;
font-weight: 500;
}
.status-badge.running {
background-color: rgba(0, 184, 148, 0.1);
color: var(--accent);
}
.status-badge.stopped {
background-color: rgba(239, 68, 68, 0.1);
color: #ef4444;
}
.skeleton {
background-color: #3a3a4a;
border-radius: 0.5rem;
animation: pulse 2s infinite;
}
@keyframes pulse {
0%, 100% {
opacity: 1;
}
50% {
opacity: 0.5;
}
}
.toast {
position: fixed;
bottom: 2rem;
right: 2rem;
padding: 1rem 1.5rem;
border-radius: 2rem;
background-color: var(--bg-secondary);
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
transform: translateY(100px);
opacity: 0;
transition: all 0.3s ease;
z-index: 100;
}
.toast.show {
transform: translateY(0);
opacity: 1;
}
.toast.success {
border-left: 4px solid var(--accent);
}
.toast.error {
border-left: 4px solid #ef4444;
}
.tab {
padding: 0.75rem 1.5rem;
border-radius: 2rem;
cursor: pointer;
transition: all 0.2s;
}
.tab:hover {
background-color: #3a3a4a;
}
.tab.active {
background-color: var(--accent);
color: white;
}
.console-log {
background-color: #1a1a2a;
color: #e2e8f0;
font-family: 'JetBrains Mono', monospace;
padding: 1rem;
border-radius: 1rem;
height: 400px;
overflow-y: auto;
}
.console-log::-webkit-scrollbar {
width: 8px;
}
.console-log::-webkit-scrollbar-track {
background: #2a2a3a;
border-radius: 4px;
}
.console-log::-webkit-scrollbar-thumb {
background: #3f3f5a;
border-radius: 4px;
}
.console-log::-webkit-scrollbar-thumb:hover {
background: var(--accent);
}
.mod-card {
transition: all 0.2s;
}
.mod-card:hover {
transform: translateY(-2px);
box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}
.chart-container {
height: 200px;
}
</style>
</head>
<body class="min-h-screen flex">
<!-- Sidebar -->
<div class="w-64 bg-[#2a2a3a] p-6 flex flex-col">
<div class="flex items-center mb-8">
<div class="w-10 h-10 rounded-full bg-[#00b894] flex items-center justify-center mr-3">
<i data-feather="cpu" class="text-white"></i>
</div>
<span class="font-bold text-xl">Sahaj33</span>
</div>
<nav class="flex-1 space-y-2">
<a href="#" class="sidebar-item active flex items-center" onclick="showScreen('dashboard')">
<i data-feather="home" class="mr-3"></i>
Dashboard
</a>
<a href="#" class="sidebar-item flex items-center" onclick="showScreen('servers')">
<i data-feather="server" class="mr-3"></i>
Servers
</a>
<a href="#" class="sidebar-item flex items-center" onclick="showScreen('create-server')">
<i data-feather="plus-circle" class="mr-3"></i>
Create Server
</a>
<a href="#" class="sidebar-item flex items-center" onclick="showScreen('console')">
<i data-feather="terminal" class="mr-3"></i>
Console
</a>
<a href="#" class="sidebar-item flex items-center" onclick="showScreen('mods')">
<i data-feather="package" class="mr-3"></i>
Mods
</a>
<a href="#" class="sidebar-item flex items-center" onclick="showScreen('backups')">
<i data-feather="save" class="mr-3"></i>
Backups
</a>
<a href="#" class="sidebar-item flex items-center" onclick="showScreen('performance')">
<i data-feather="activity" class="mr-3"></i>
Performance
</a>
<a href="#" class="sidebar-item flex items-center" onclick="showScreen('tunnel')">
<i data-feather="globe" class="mr-3"></i>
Tunnel
</a>
<a href="#" class="sidebar-item flex items-center" onclick="showScreen('settings')">
<i data-feather="settings" class="mr-3"></i>
Settings
</a>
</nav>
<div class="mt-auto pt-6 border-t border-[#3f3f5a]">
<div class="flex items-center justify-between">
<div class="flex items-center">
<i data-feather="moon" class="mr-2"></i>
<span>Dark Mode</span>
</div>
<label class="relative inline-flex items-center cursor-pointer">
<input type="checkbox" class="sr-only peer" checked>
<div class="w-11 h-6 bg-gray-700 peer-focus:outline-none rounded-full peer peer-checked:after:translate-x-full peer-checked:after:border-white after:content-[''] after:absolute after:top-[2px] after:left-[2px] after:bg-white after:border-gray-300 after:border after:rounded-full after:h-5 after:w-5 after:transition-all peer-checked:bg-[#00b894]"></div>
</label>
</div>
</div>
</div>
<!-- Main Content -->
<div class="flex-1 flex flex-col">
<!-- Top Bar -->
<header class="bg-[#2a2a3a] p-6 flex items-center justify-between border-b border-[#3f3f5a]">
<h1 class="text-2xl font-bold">Sahaj33 Server Manager</h1>
<div class="flex items-center space-x-4">
<button class="w-8 h-8 rounded-full flex items-center justify-center hover:bg-[#3a3a4a]">
<i data-feather="minimize-2"></i>
</button>
<button class="w-8 h-8 rounded-full flex items-center justify-center hover:bg-[#3a3a4a]">
<i data-feather="x"></i>
</button>
</div>
</header>
<!-- Screen Content -->
<main class="flex-1 p-6 overflow-y-auto">
<!-- Dashboard Screen -->
<div id="dashboard-screen" class="screen">
<div class="flex items-center justify-between mb-6">
<h2 class="text-xl font-bold">Dashboard</h2>
<button class="btn btn-secondary flex items-center" onclick="showToast('Server data reloaded', 'success')">
<i data-feather="refresh-cw" class="mr-2"></i>
Reload
</button>
</div>
<div class="grid grid-cols-1 lg:grid-cols-3 gap-6 mb-6">
<div class="card p-6">
<div class="flex items-center justify-between mb-4">
<h3 class="font-medium">Server Status</h3>
<span class="status-badge running">
<i data-feather="circle" class="w-2 h-2 mr-2"></i>
Running
</span>
</div>
<div class="flex space-x-4">
<button class="btn btn-primary flex-1 flex items-center justify-center">
<i data-feather="power" class="mr-2"></i>
Stop
</button>
<button class="btn btn-secondary flex-1 flex items-center justify-center">
<i data-feather="rotate-cw" class="mr-2"></i>
Restart
</button>
</div>
</div>
<div class="card p-6">
<h3 class="font-medium mb-4">Players Online</h3>
<div class="flex items-center justify-between">
<div class="text-3xl font-bold">4</div>
<div class="flex -space-x-2">
<img class="w-8 h-8 rounded-full border-2 border-[#2a2a3a]" src="https://mc-heads.net/avatar/MHF_Steve" alt="Player">
<img class="w-8 h-8 rounded-full border-2 border-[#2a2a3a]" src="https://mc-heads.net/avatar/MHF_Alex" alt="Player">
<img class="w-8 h-8 rounded-full border-2 border-[#2a2a3a]" src="https://mc-heads.net/avatar/Notch" alt="Player">
<img class="w-8 h-8 rounded-full border-2 border-[#2a2a3a]" src="https://mc-heads.net/avatar/Dinnerbone" alt="Player">
</div>
</div>
</div>
<div class="card p-6">
<h3 class="font-medium mb-4">Server Resources</h3>
<div class="flex items-center justify-between">
<div>
<div class="text-sm text-[#94a3b8]">CPU Usage</div>
<div class="text-xl font-bold">24%</div>
</div>
<div>
<div class="text-sm text-[#94a3b8]">RAM Usage</div>
<div class="text-xl font-bold">3.2/8 GB</div>
</div>
</div>
</div>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
<div class="card p-6">
<h3 class="font-medium mb-4">Server Information</h3>
<div class="space-y-4">
<div>
<div class="text-sm text-[#94a3b8]">Public IP</div>
<div class="flex items-center">
<div class="skeleton w-48 h-6"></div>
</div>
</div>
<div>
<div class="text-sm text-[#94a3b8]">LAN IP</div>
<div class="flex items-center">
<div class="skeleton w-32 h-6"></div>
</div>
</div>
<div>
<div class="text-sm text-[#94a3b8]">Port</div>
<div class="flex items-center">
<div class="skeleton w-16 h-6"></div>
</div>
</div>
<div>
<div class="text-sm text-[#94a3b8]">Edition</div>
<div class="flex items-center">
<div class="skeleton w-24 h-6"></div>
</div>
</div>
<div>
<div class="text-sm text-[#94a3b8]">Version</div>
<div class="flex items-center">
<div class="skeleton w-24 h-6"></div>
</div>
</div>
</div>
</div>
<div class="card p-6">
<h3 class="font-medium mb-4">Recent Activity</h3>
<div class="space-y-4">
<div class="flex items-start">
<div class="w-8 h-8 rounded-full bg-[#3a3a4a] flex items-center justify-center mr-3">
<i data-feather="user" class="text-[#94a3b8]"></i>
</div>
<div>
<div class="font-medium">Notch joined the game</div>
<div class="text-sm text-[#94a3b8]">2 minutes ago</div>
</div>
</div>
<div class="flex items-start">
<div class="w-8 h-8 rounded-full bg-[#3a3a4a] flex items-center justify-center mr-3">
<i data-feather="alert-circle" class="text-[#94a3b8]"></i>
</div>
<div>
<div class="font-medium">Server autosave completed</div>
<div class="text-sm text-[#94a3b8]">15 minutes ago</div>
</div>
</div>
<div class="flex items-start">
<div class="w-8 h-8 rounded-full bg-[#3a3a4a] flex items-center justify-center mr-3">
<i data-feather="user" class="text-[#94a3b8]"></i>
</div>
<div>
<div class="font-medium">Dinnerbone left the game</div>
<div class="text-sm text-[#94a3b8]">32 minutes ago</div>
</div>
</div>
</div>
</div>
<div class="card p-6">
<h3 class="font-medium mb-4">Quick Actions</h3>
<div class="grid grid-cols-2 gap-4">
<button class="btn btn-secondary flex flex-col items-center py-4">
<i data-feather="save" class="w-6 h-6 mb-2"></i>
Backup Now
</button>
<button class="btn btn-secondary flex flex-col items-center py-4">
<i data-feather="upload" class="w-6 h-6 mb-2"></i>
Upload World
</button>
<button class="btn btn-secondary flex flex-col items-center py-4">
<i data-feather="globe" class="w-6 h-6 mb-2"></i>
Start Tunnel
</button>
<button class="btn btn-secondary flex flex-col items-center py-4">
<i data-feather="settings" class="w-6 h-6 mb-2"></i>
Server Settings
</button>
</div>
</div>
</div>
</div>
<!-- Servers Screen -->
<div id="servers-screen" class="screen hidden">
<div class="flex items-center justify-between mb-6">
<h2 class="text-xl font-bold">Servers</h2>
<button class="btn btn-primary flex items-center" onclick="showScreen('create-server')">
<i data-feather="plus" class="mr-2"></i>
Create Server
</button>
</div>
<div class="card p-6 mb-6">
<div class="flex items-center justify-between mb-6">
<div class="relative flex-1 max-w-md">
<i data-feather="search" class="absolute left-4 top-1/2 transform -translate-y-1/2 text-[#94a3b8]"></i>
<input type="text" placeholder="Search servers..." class="input-field pl-10 w-full">
</div>
<div class="flex space-x-2">
<button class="btn btn-secondary">
<i data-feather="filter" class="mr-2"></i>
Filter
</button>
<button class="btn btn-secondary">
<i data-feather="refresh-cw" class="mr-2"></i>
Refresh
</button>
</div>
</div>
<div class="overflow-x-auto">
<table class="w-full">
<thead>
<tr class="text-left text-[#94a3b8] border-b border-[#3f3f5a]">
<th class="pb-4">Name</th>
<th class="pb-4">Edition</th>
<th class="pb-4">Version</th>
<th class="pb-4">Status</th>
<th class="pb-4">Players</th>
<th class="pb-4 text-right">Actions</th>
</tr>
</thead>
<tbody class="divide-y divide-[#3f3f5a]">
<tr>
<td class="py-4 font-medium">Survival World</td>
<td class="py-4">Java</td>
<td class="py-4">1.19.2</td>
<td class="py-4">
<span class="status-badge running">
<i data-feather="circle" class="w-2 h-2 mr-2"></i>
Running
</span>
</td>
<td class="py-4">4/20</td>
<td class="py-4 text-right">
<div class="flex justify-end space-x-2">
<button class="w-8 h-8 rounded-full flex items-center justify-center hover:bg-[#3a3a4a]">
<i data-feather="power" class="w-4 h-4"></i>
</button>
<button class="w-8 h-8 rounded-full flex items-center justify-center hover:bg-[#3a3a4a]">
<i data-feather="rotate-cw" class="w-4 h-4"></i>
</button>
<button class="w-8 h-8 rounded-full flex items-center justify-center hover:bg-[#3a3a4a]">
<i data-feather="trash-2" class="w-4 h-4"></i>
</button>
</div>
</td>
</tr>
<tr>
<td class="py-4 font-medium">Creative Builds</td>
<td class="py-4">Java</td>
<td class="py-4">1.18.2</td>
<td class="py-4">
<span class="status-badge stopped">
<i data-feather="circle" class="w-2 h-2 mr-2"></i>
Stopped
</span>
</td>
<td class="py-4">0/20</td>
<td class="py-4 text-right">
<div class="flex justify-end space-x-2">
<button class="w-8 h-8 rounded-full flex items-center justify-center hover:bg-[#3a3a4a]">
<i data-feather="power" class="w-4 h-4"></i>
</button>
<button class="w-8 h-8 rounded-full flex items-center justify-center hover:bg-[#3a3a4a]">
<i data-feather="rotate-cw" class="w-4 h-4"></i>
</button>
<button class="w-8 h-8 rounded-full flex items-center justify-center hover:bg-[#3a3a4a]">
<i data-feather="trash-2" class="w-4 h-4"></i>
</button>
</div>
</td>
</tr>
<tr>
<td class="py-4 font-medium">Bedrock Edition</td>
<td class="py-4">Bedrock</td>
<td class="py-4">1.19.40</td>
<td class="py-4">
<span class="status-badge running">
<i data-feather="circle" class="w-2 h-2 mr-2"></i>
Running
</span>
</td>
<td class="py-4">2/10</td>
<td class="py-4 text-right">
<div class="flex justify-end space-x-2">
<button class="w-8 h-8 rounded-full flex items-center justify-center hover:bg-[#3a3a4a]">
<i data-feather="power" class="w-4 h-4"></i>
</button>
<button class="w-8 h-8 rounded-full flex items-center justify-center hover:bg-[#3a3a4a]">
<i data-feather="rotate-cw" class="w-4 h-4"></i>
</button>
<button class="w-8 h-8 rounded-full flex items-center justify-center hover:bg-[#3a3a4a]">
<i data-feather="trash-2" class="w-4 h-4"></i>
</button>
</div>
</td>
</tr>
<tr>
<td class="py-4 font-medium">Modded Server</td>
<td class="py-4">Java</td>
<td class="py-4">1.16.5</td>
<td class="py-4">
<span class="status-badge stopped">
<i data-feather="circle" class="w-2 h-2 mr-2"></i>
Stopped
</span>
</td>
<td class="py-4">0/20</td>
<td class="py-4 text-right">
<div class="flex justify-end space-x-2">
<button class="w-8 h-8 rounded-full flex items-center justify-center hover:bg-[#3a3a4a]">
<i data-feather="power" class="w-4 h-4"></i>
</button>
<button class="w-8 h-8 rounded-full flex items-center justify-center hover:bg-[#3a3a4a]">
<i data-feather="rotate-cw" class="w-4 h-4"></i>
</button>
<button class="w-8 h-8 rounded-full flex items-center justify-center hover:bg-[#3a3a4a]">
<i data-feather="trash-2" class="w-4 h-4"></i>
</button>
</div>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<!-- Create Server Wizard -->
<div id="create-server-screen" class="screen hidden">
<div class="flex items-center justify-between mb-6">
<h2 class="text-xl font-bold">Create New Server</h2>
<button class="btn btn-secondary" onclick="showScreen('servers')">
<i data-feather="arrow-left" class="mr-2"></i>
Back to Servers
</button>
</div>
<div class="card p-6">
<div class="flex mb-6">
<div class="flex-1">
<div class="flex flex-col items-center">
<div class="w-12 h-12 rounded-full flex items-center justify-center mb-2" id="step-1-indicator">
<span class="text-lg font-bold">1</span>
</div>
<span class="text-sm">Edition</span>
</div>
</div>
<div class="flex-1">
<div class="flex flex-col items-center">
<div class="w-12 h-12 rounded-full flex items-center justify-center mb-2 bg-[#3a3a4a]" id="step-2-indicator">
<span class="text-lg font-bold">2</span>
</div>
<span class="text-sm text-[#94a3b8]">Resources</span>
</div>
</div>
<div class="flex-1">
<div class="flex flex-col items-center">
<div class="w-12 h-12 rounded-full flex items-center justify-center mb-2 bg-[#3a3a4a]" id="step-3-indicator">
<span class="text-lg font-bold">3</span>
</div>
<span class="text-sm text-[#94a3b8]">Location</span>
</div>
</div>
<div class="flex-1">
<div class="flex flex-col items-center">
<div class="w-12 h-12 rounded-full flex items-center justify-center mb-2 bg-[#3a3a4a]" id="step-4-indicator">
<span class="text-lg font-bold">4</span>
</div>
<span class="text-sm text-[#94a3b8]">EULA</span>
</div>
</div>
</div>
<div id="step-1-content">
<h3 class="text-lg font-medium mb-6">Choose Server Edition</h3>
<div class="grid grid-cols-1 md:grid-cols-2 gap-6 mb-8">
<div class="card p-6 cursor-pointer hover:border-[#00b894] border-2 border-[#3f3f5a] rounded-2xl transition-all">
<div class="flex items-center mb-4">
<div class="w-10 h-10 rounded-full bg-[#00b894] flex items-center justify-center mr-3">
<i data-feather="box" class="text-white"></i>
</div>
<h4 class="font-bold">Java Edition</h4>
</div>
<p class="text-[#94a3b8] mb-4">The original Minecraft experience with extensive modding support.</p>
<div class="flex flex-wrap gap-2">
<span class="px-3 py-1 rounded-full bg-[#3a3a4a] text-sm">Vanilla</span>
<span class="px-3 py-1 rounded-full bg-[#3a3a4a] text-sm">Paper</span>
<span class="px-3 py-1 rounded-full bg-[#3a3a4a] text-sm">Fabric</span>
<span class="px-3 py-1 rounded-full bg-[#3a3a4a] text-sm">Forge</span>
</div>
</div>
<div class="card p-6 cursor-pointer hover:border-[#00b894] border-2 border-[#3f3f5a] rounded-2xl transition-all">
<div class="flex items-center mb-4">
<div class="w-10 h-10 rounded-full bg-[#3a3a4a] flex items-center justify-center mr-3">
<i data-feather="smartphone" class="text-white"></i>
</div>
<h4 class="font-bold">Bedrock Edition</h4>
</div>
<p class="text-[#94a3b8] mb-4">Cross-platform version that works on mobile, console, and Windows 10/11.</p>
<div class="flex flex-wrap gap-2">
<span class="px-3 py-1 rounded-full bg-[#3a3a4a] text-sm">Vanilla</span>
</div>
</div>
</div>
<div class="mb-6">
<h4 class="font-medium mb-3">Server Flavor</h4>
<div class="grid grid-cols-1 md:grid-cols-4 gap-3">
<button class="btn btn-secondary">Vanilla</button>
<button class="btn btn-secondary">Paper</button>
<button class="btn btn-secondary">Fabric</button>
<button class="btn btn-secondary">Forge</button>
</div>
</div>
<div class="mb-6">
<h4 class="font-medium mb-3">Version</h4>
<div class="flex items-center">
<select class="input-field flex-1 mr-4">
<option>1.19.2</option>
<option>1.19.1</option>
<option>1.19</option>
<option>1.18.2</option>
<option>1.18.1</option>
<option>1.18</option>
</select>
<div class="flex items-center">
<label class="inline-flex items-center cursor-pointer">
<input type="checkbox" class="sr-only peer">
<div class="relative w-11 h-6 bg-gray-700 peer-focus:outline-none rounded-full peer peer-checked:after:translate-x-full peer-checked:after:border-white after:content-[''] after:absolute after:top-[2px] after:left-[2px] after:bg-white after:border-gray-300 after:border after:rounded-full after:h-5 after:w-5 after:transition-all peer-checked:bg-[#00b894]"></div>
<span class="ml-2 text-sm">Show Snapshots</span>
</label>
</div>
</div>
</div>
<div class="flex justify-end">
<button class="btn btn-primary" onclick="nextStep(2)">
Next
<i data-feather="arrow-right" class="ml-2"></i>
</button>
</div>
</div>
<div id="step-2-content" class="hidden">
<h3 class="text-lg font-medium mb-6">Allocate Resources</h3>
<div class="card p-6 mb-6">
<h4 class="font-medium mb-4">RAM Allocation</h4>
<div class="mb-4">
<input type="range" min="1" max="16" value="4" class="w-full h-2 bg-[#3a3a4a] rounded-lg appearance-none cursor-pointer">
</div>
<div class="flex items-center justify-between">
<div>
<span class="text-sm text-[#94a3b8]">Minimum: 1GB</span>
</div>
<div class="flex items-center">
<input type="number" min="1" max="16" value="4" class="input-field w-20 text-center mr-2">
<span>GB</span>
</div>
<div>
<span class="text-sm text-[#94a3b8]">Maximum: 16GB</span>
</div>
</div>
</div>
<div class="card p-6 mb-6">
<h4 class="font-medium mb-4">System Resources</h4>
<div class="grid grid-cols-1 md:grid-cols-3 gap-4">
<div>
<div class="text-sm text-[#94a3b8] mb-1">Available RAM</div>
<div class="font-medium">16 GB</div>
</div>
<div>
<div class="text-sm text-[#94a3b8] mb-1">CPU Cores</div>
<div class="font-medium">8 Cores</div>
</div>
<div>
<div class="text-sm text-[#94a3b8] mb-1">Disk Space</div>
<div class="font-medium">256 GB SSD</div>
</div>
</div>
</div>
<div class="flex justify-between">
<button class="btn btn-secondary" onclick="prevStep(1)">
<i data-feather="arrow-left" class="mr-2"></i>
Back
</button>
<button class="btn btn-primary" onclick="nextStep(3)">
Next
<i data-feather="arrow-right" class="ml-2"></i>
</button>
</div>
</div>
<div id="step-3-content" class="hidden">
<h3 class="text-lg font-medium mb-6">Server Location</h3>
<div class="card p-6 mb-6">
<h4 class="font-medium mb-4">Server Directory</h4>
<div class="flex items-center">
<input type="text" placeholder="C:\Minecraft\Servers\NewServer" class="input-field flex-1 mr-4">
<button class="btn btn-secondary">
<i data-feather="folder" class="mr-2"></i>
Browse
</button>
</div>
<div class="mt-3 text-sm text-[#94a3b8]">
The server files will be created in this directory. Make sure you have write permissions.
</div>
</div>
<div class="card p-6 mb-6">
<h4 class="font-medium mb-4">World Options</h4>
<div class="grid grid-cols-1 md:grid-cols-2 gap-6">
<div>
<div class="text-sm text-[#94a3b8] mb-2">World Type</div>
<select class="input-field w-full">
<option>Default</option>
<option>Flat</option>
<option>Large Biomes</option>
<option>Amplified</option>
<option>Single Biome</option>
</select>
</div>
<div>
<div class="text-sm text-[#94a3b8] mb-2">Seed</div>
<input type="text" placeholder="Leave blank for random" class="input-field w-full">
</div>
</div>
</div>
<div class="flex justify-between">
<button class="btn btn-secondary" onclick="prevStep(2)">
<i data-feather="arrow-left" class="mr-2"></i>
Back
</button>
<button class="btn btn-primary" onclick="nextStep(4)">
Next
<i data-feather="arrow-right" class="ml-2"></i>
</button>
</div>
</div>
<div id="step-4-content" class="hidden">
<h3 class="text-lg font-medium mb-6">Minecraft EULA</h3>
<div class="card p-6 mb-6">
<div class="flex items-start">
<div class="flex items-center h-5">
<input id="eula-checkbox" type="checkbox" class="w-4 h-4 rounded bg-[#3a3a4a] border-[#3f3f5a] focus:ring-[#00b894]">
</div>
<label for="eula-checkbox" class="ml-3 text-sm">
<span class="font-medium">I agree to the Minecraft End User License Agreement (EULA)</span>
<p class="text-[#94a3b8] mt-1">By checking this box, you acknowledge that you have read and agree to the <a href="#" class="text-[#00b894] hover:underline">Minecraft EULA</a>. This is required to run a Minecraft server.</p>
</label>
</div>
</div>
<div class="card p-6 mb-6">
<h4 class="font-medium mb-4">Server Summary</h4>
<div class="grid grid-cols-1 md:grid-cols-2 gap-6">
<div>
<div class="text-sm text-[#94a3b8] mb-1">Edition</div>
<div class="font-medium">Java Edition (Paper)</div>
</div>
<div>
<div class="text-sm text-[#94a3b8] mb-1">Version</div>
<div class="font-medium">1.19.2</div>
</div>
<div>
<div class="text-sm text-[#94a3b8] mb-1">RAM Allocation</div>
<div class="font-medium">4 GB</div>
</div>
<div>
<div class="text-sm text-[#94a3b8] mb-1">Location</div>
<div class="font-medium">C:\Minecraft\Servers\NewServer</div>
</div>
</div>
</div>
<div class="flex justify-between">
<button class="btn btn-secondary" onclick="prevStep(3)">
<i data-feather="arrow-left" class="mr-2"></i>
Back
</button>
<button class="btn btn-primary" id="finish-btn" disabled>
<i data-feather="check" class="mr-2"></i>
Finish
</button>
</div>
</div>
</div>
</div>
<!-- Console Screen -->
<div id="console-screen" class="screen hidden">
<div class="flex items-center justify-between mb-6">
<h2 class="text-xl font-bold">Server Console</h2>
<div class="flex space-x-3">
<button class="btn btn-secondary">
<i data-feather="download" class="mr-2"></i>
Download Log
</button>
<button class="btn btn-secondary">
<i data-feather="trash-2" class="mr-2"></i>
Clear
</button>
</div>
</div>
<div class="card p-6 mb-6">
<div class="console-log mono" id="console-output">
[12:34:56] [Server thread/INFO]: Starting minecraft server version 1.19.2<br>
[12:34:56] [Server thread/INFO]: Loading properties<br>
[12:34:56] [Server thread/INFO]: Default game type: SURVIVAL<br>
[12:34:56] [Server thread/INFO]: Generating keypair<br>
[12:34:57] [Server thread/INFO]: Starting Minecraft server on *:25565<br>
[12:34:57] [Server thread/INFO]: Using epoll channel type<br>
[12:34:57] [Server thread/INFO]: Preparing level "world"<br>
[12:34:58] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld<br>
[12:34:59] [Server thread/INFO]: Time elapsed: 1234 ms<br>
[12:34:59] [Server thread/INFO]: Done (3.456s)! For help, type "help"<br>
[12:35:02] [User Authenticator #1/INFO]: UUID of player Notch is 069a79f4-44e9-4726-a5be-fca90e38aaf5<br>
[12:35:02] [Server thread/INFO]: Notch[/127.0.0.1:12345] logged in with entity id 123 at ([world] 123.5, 64.0, 456.5)<br>
[12:35:02] [Server thread/INFO]: Notch joined the game<br>
[12:35:12] [Server thread/INFO]: Notch: Hello everyone!<br>
[12:35:15] [Server thread/INFO]: <Notch> This server is awesome!<br>
</div>
<div class="flex items-center mt-4">
<input type="text" placeholder="Enter command..." class="input-field flex-1 mr-3">
<button class="btn btn-primary">
<i data-feather="send" class="mr-2"></i>
Send
</button>
</div>
</div>
</div>
<!-- Mods Screen -->
<div id="mods-screen" class="screen hidden">
<div class="flex items-center justify-between mb-6">
<h2 class="text-xl font-bold">Mods Manager</h2>
<button class="btn btn-secondary">
<i data-feather="refresh-cw" class="mr-2"></i>
Refresh
</button>
</div>
<div class="card p-6 mb-6">
<div class="flex items-center justify-between mb-6">
<div class="relative flex-1 max-w-md">
<i data-feather="search" class="absolute left-4 top-1/2 transform -translate-y-1/2 text-[#94a3b8]"></i>
<input type="text" placeholder="Search mods..." class="input-field pl-10 w-full">
</div>
<div class="flex space-x-2">
<div class="flex items-center space-x-2">
<span class="text-sm">Source:</span>
<select class="input-field">
<option>CurseForge</option>
<option>Modrinth</option>
</select>
</div>
</div>
</div>
<div class="mb-8">
<h3 class="font-medium mb-4">Installed Mods (4)</h3>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-4">
<div class="card p-4 mod-card">
<div class="flex items-start">
<img src="https://media.forgecdn.net/avatars/thumbnails/109/919/64/64/636379036914047709.png" alt="Mod icon" class="w-12 h-12 rounded-lg mr-3">
<div class="flex-1">
<div class="flex items-start justify-between">
<div>
<h4 class="font-medium">JourneyMap</h4>
<div class="text-sm text-[#94a3b8]">v5.8.2</div>
</div>
<button class="btn btn-secondary px-3 py-1 text-sm">
<i data-feather="trash-2" class="w-3 h-3 mr-1"></i>
Remove
</button>
</div>
<div class="text-sm mt-2">Real-time mapping in-game or in a web browser as you explore.</div>
</div>
</div>
</div>
<div class="card p-4 mod-card">
<div class="flex items-start">
<img src="https://media.forgecdn.net/avatars/thumbnails/9/558/64/64/635442179201009052.png" alt="Mod icon" class="w-12 h-12 rounded-lg mr-3">
<div class="flex-1">
<div class="flex items-start justify-between">
<div>
<h4 class="font-medium">JEI</h4>
<div class="text-sm text-[#94a3b8]">v10.2.1</div>
</div>
<button class="btn btn-secondary px-3 py-1 text-sm">
<i data-feather="trash-2" class="w-3 h-3 mr-1"></i>
Remove
</button>
</div>
<div class="text-sm mt-2">View items and recipes in-game with an easy-to-use searchable interface.</div>
</div>
</div>
</div>
<div class="card p-4 mod-card">
<div class="flex items-start">
<img src="https://media.forgecdn.net/avatars/thumbnails/122/485/64/64/636416371123002121.png" alt="Mod icon" class="w-12 h-12 rounded-lg mr-3">
<div class="flex-1">
<div class="flex items-start justify-between">
<div>
<h4 class="font-medium">OptiFine</h4>
<div class="text-sm text-[#94a3b8]">v1.19.2_HD_U_H5</div>
</div>
<button class="btn btn-secondary px-3 py-1 text-sm">
<i data-feather="trash-2" class="w-3 h-3 mr-1"></i>
Remove
</button>
</div>
<div class="text-sm mt-2">Improves game performance and graphics with many configuration options.</div>
</div>
</div>
</div>
</div>
</div>
<div>
<h3 class="font-medium mb-4">Popular Mods</h3>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-4">
<div class="card p-4 mod-card">
<div class="flex items-start">
<img src="https://media.forgecdn.net/avatars/thumbnails/6/474/64/64/635377073070724415.png" alt="Mod icon" class="w-12 h-12 rounded-lg mr-3">
<div class="flex-1">
<div class="flex items-start justify-between">
<div>
<h4 class="font-medium">Biomes O' Plenty</h4>
<div class="text-sm text-[#94a3b8]">v15.0.0</div>
</div>
<button class="btn btn-primary px-3 py-1 text-sm">
<i data-feather="download" class="w-3 h-3 mr-1"></i>
Install
</button>
</div>
<div class="text-sm mt-2">Adds dozens of new biomes to Minecraft, from lush forests to desolate wastelands.</div>
</div>
</div>
</div>
<div class="card p-4 mod-card">
<div class="flex items-start">
<img src="https://media.forgecdn.net/avatars/thumbnails/11/938/64/64/635473153101000042.png" alt="Mod icon" class="w-12 h-12 rounded-lg mr-3">
<div class="flex-1">
<div class="flex items-start justify-between">
<div>
<h4 class="font-medium">Tinkers' Construct</h4>
<div class="text-sm text-[#94a3b8]">v3.5.2</div>
</div>
<button class="btn btn-primary px-3 py-1 text-sm">
<i data-feather="download" class="w-3 h-3 mr-1"></i>
Install
</button>
</div>
<div class="text-sm mt-2">A mod about putting tools together in a wide variety of ways.</div>
</div>
</div>
</div>
<div class="card p-4 mod-card">
<div class="flex items-start">
<img src="https://media.forgecdn.net/avatars/thumbnails/7/30/64/64/635384305308620621.png" alt="Mod icon" class="w-12 h-12 rounded-lg mr-3">
<div class="flex-1">
<div class="flex items-start justify-between">
<div>
<h4 class="font-medium">Applied Energistics 2</h4>
<div class="text-sm text-[#94a3b8]">v10.0.0</div>
</div>
<button class="btn btn-primary px-3 py-1 text-sm">
<i data-feather="download" class="w-3 h-3 mr-1"></i>
Install
</button>
</div>
<div class="text-sm mt-2">A Minecraft mod about matter, energy and using them to conquer the world.</div>
</div>
</div>
</div>
<div class="card p-4 mod-card">
<div class="flex items-start">
<img src="https://media.forgecdn.net/avatars/thumbnails/12/21/64/64/635476135809983906.png" alt="Mod icon" class="w-12 h-12 rounded-lg mr-3">
<div class="flex-1">
<div class="flex items-start justify-between">
<div>
<h4 class="font-medium">Thaumcraft</h4>
<div class="text-sm text-[#94a3b8]">v6.1.BETA26</div>
</div>
<button class="btn btn-primary px-3 py-1 text-sm">
<i data-feather="download" class="w-3 h-3 mr-1"></i>
Install
</button>
</div>
<div class="text-sm mt-2">Adding magic to Minecraft through a system of discovery and research.</div>
</div>
</div>
</div>
<div class="card p-4 mod-card">
<div class="flex items-start">
<img src="https://media.forgecdn.net/avatars/thumbnails/10/25/64/64/635452593375309762.png" alt="Mod icon" class="w-12 h-12 rounded-lg mr-3">
<div class="flex-1">
<div class="flex items-start justify-between">
<div>
<h4 class="font-medium">Twilight Forest</h4>
<div class="text-sm text-[#94a3b8]">v4.1.0</div>
</div>
<button class="btn btn-primary px-3 py-1 text-sm">
<i data-feather="download" class="w-3 h-3 mr-1"></i>
Install
</button>
</div>
<div class="text-sm mt-2">A dimension full of mystery, danger, and adventure!</div>
</div>
</div>
</div>
<div class="card p-4 mod-card">
<div class="flex items-start">
<img src="https://media.forgecdn.net/avatars/thumbnails/13/949/64/64/635512188039194703.png" alt="Mod icon" class="w-12 h-12 rounded-lg mr-3">
<div class="flex-1">
<div class="flex items-start justify-between">
<div>
<h4 class="font-medium">Botania</h4>
<div class="text-sm text-[#94a3b8]">v1.19.2-429</div>
</div>
<button class="btn btn-primary px-3 py-1 text-sm">
<i data-feather="download" class="w-3 h-3 mr-1"></i>
Install
</button>
</div>
<div class="text-sm mt-2">A magic tech mod based on natural magic using flowers.</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Backups Screen -->
<div id="backups-screen" class="screen hidden">
<div class="flex items-center justify-between mb-6">
<h2 class="text-xl font-bold">Backups</h2>
<div class="flex space-x-3">
<button class="btn btn-secondary">
<i data-feather="refresh-cw" class="mr-2"></i>
Refresh
</button>
<button class="btn btn-primary">
<i data-feather="plus" class="mr-2"></i>
Backup Now
</button>
</div>
</div>
<div class="card p-6 mb-6">
<div class="flex items-center justify-between mb-6">
<h3 class="font-medium">Automatic Backups</h3>
<div class="flex items-center space-x-3">
<span class="text-sm text-[#94a3b8]">Schedule:</span>
<select class="input-field">
<option>Off</option>
<option>Hourly</option>
<option selected>Daily</option>
<option>Weekly</option>
</select>
</div>
</div>
<div class="overflow-x-auto">
<table class="w-full">
<thead>
<tr class="text-left text-[#94a3b8] border-b border-[#3f3f5a]">
<th class="pb-4">Timestamp</th>
<th class="pb-4">Size</th>
<th class="pb-4">Description</th>
<th class="pb-4 text-right">Actions</th>
</tr>
</thead>
<tbody class="divide-y divide-[#3f3f5a]">
<tr>
<td class="py-4">2023-04-15 14:30:22</td>
<td class="py-4">1.2 GB</td>
<td class="py-4">Automatic daily backup</td>
<td class="py-4 text-right">
<div class="flex justify-end space-x-2">
<button class="w-8 h-8 rounded-full flex items-center justify-center hover:bg-[#3a3a4a]">
<i data-feather="rotate-ccw" class="w-4 h-4"></i>
</button>
<button class="w-8 h-8 rounded-full flex items-center justify-center hover:bg-[#3a3a4a]">
<i data-feather="download" class="w-4 h-4"></i>
</button>
<button class="w-8 h-8 rounded-full flex items-center justify-center hover:bg-[#3a3a4a]">
<i data-feather="trash-2" class="w-4 h-4"></i>
</button>
</div>
</td>
</tr>
<tr>
<td class="py-4">2023-04-14 14:30:18</td>
<td class="py-4">1.1 GB</td>
<td class="py-4">Automatic daily backup</td>
<td class="py-4 text-right">
<div class="flex justify-end space-x-2">
<button class="w-8 h-8 rounded-full flex items-center justify-center hover:bg-[#3a3a4a]">
<i data-feather="rotate-ccw" class="w-4 h-4"></i>
</button>
<button class="w-8 h-8 rounded-full flex items-center justify-center hover:bg-[#3a3a4a]">
<i data-feather="download" class="w-4 h-4"></i>
</button>
<button class="w-8 h-8 rounded-full flex items-center justify-center hover:bg-[#3a3a4a]">
<i data-feather="trash-2" class="w-4 h-4"></i>
</button>
</div>
</td>
</tr>
<tr>
<td class="py-4">2023-04-13 14:30:15</td>
<td class="py-4">1.0 GB</td>
<td class="py-4">Automatic daily backup</td>
<td class="py-4 text-right">
<div class="flex justify-end space-x-2">
<button class="w-8 h-8 rounded-full flex items-center justify-center hover:bg-[#3a3a4a]">
<i data-feather="rotate-ccw" class="w-4 h-4"></i>
</button>
<button class="w-8 h-8 rounded-full flex items-center justify-center hover:bg-[#3a3a4a]">
<i data-feather="download" class="w-4 h-4"></i>
</button>
<button class="w-8 h-8 rounded-full flex items-center justify-center hover:bg-[#3a3a4a]">
<i data-feather="trash-2" class="w-4 h-4"></i>
</button>
</div>
</td>
</tr>
<tr>
<td class="py-4">2023-04-10 08:15:42</td>
<td class="py-4">1.3 GB</td>
<td class="py-4">Manual backup before mod installation</td>
<td class="py-4 text-right">
<div class="flex justify-end space-x-2">
<button class="w-8 h-8 rounded-full flex items-center justify-center hover:bg-[#3a3a4a]">
<i data-feather="rotate-ccw" class="w-4 h-4"></i>
</button>
<button class="w-8 h-8 rounded-full flex items-center justify-center hover:bg-[#3a3a4a]">
<i data-feather="download" class="w-4 h-4"></i>
</button>
<button class="w-8 h-8 rounded-full flex items-center justify-center hover:bg-[#3a3a4a]">
<i data-feather="trash-2" class="w-4 h-4"></i>
</button>
</div>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<!-- Performance Screen -->
<div id="performance-screen" class="screen hidden">
<div class="flex items-center justify-between mb-6">
<h2 class="text-xl font-bold">Server Performance</h2>
<button class="btn btn-secondary">
<i data-feather="refresh-cw" class="mr-2"></i>
Refresh
</button>
</div>
<div class="grid grid-cols-1 lg:grid-cols-3 gap-6 mb-6">
<div class="card p-6">
<h3 class="font-medium mb-4">CPU Usage</h3>
<div class="chart-container">
<canvas id="cpuChart"></canvas>
</div>
</div>
<div class="card p-6">
<h3 class="font-medium mb-4">RAM Usage</h3>
<div class="chart-container">
<canvas id="ramChart"></canvas>
</div>
</div>
<div class="card p-6">
<h3 class="font-medium mb-4">TPS (Ticks Per Second)</h3>
<div class="chart-container">
<canvas id="tpsChart"></canvas>
</div>
</div>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
<div class="card p-6">
<h3 class="font-medium mb-4">Server Stats</h3>
<div class="space-y-4">
<div>
<div class="text-sm text-[#94a3b8]">Uptime</div>
<div class="text-xl font-bold">2d 14h 23m</div>
</div>
<div>
<div class="text-sm text-[#94a3b8]">Player Count</div>
<div class="text-xl font-bold">4/20</div>
</div>
<div>
<div class="text-sm text-[#94a3b8]">Tick Rate</div>
<div class="flex items-center">
<span class="status-badge running mr-2">20 TPS</span>
<span class="text-sm text-[#94a3b8]">(100%)</span>
</div>
</div>
</div>
</div>
<div class="card p-6">
<h3 class="font-medium mb-4">World Stats</h3>
<div class="space-y-4">
<div>
<div class="text-sm text-[#94a3b8]">Loaded Chunks</div>
<div class="text-xl font-bold">1,234</div>
</div>
<div>
<div class="text-sm text-[#94a3b8]">Entities</div>
<div class="text-xl font-bold">567</div>
</div>
<div>
<div class="text-sm text-[#94a3b8]">Tile Entities</div>
<div class="text-xl font-bold">89</div>
</div>
</div>
</div>
<div class="card p-6">
<h3 class="font-medium mb-4">Performance Tips</h3>
<div class="space-y-3">
<div class="flex items-start">
<i data-feather="alert-circle" class="text-yellow-400 mr-2 mt-0.5"></i>
<div>
<div class="font-medium">High Entity Count</div>
<div class="text-sm text-[#94a3b8]">Consider reducing mob spawn rates</div>
</div>
</div>
<div class="flex items-start">
<i data-feather="alert-circle" class="text-yellow-400 mr-2 mt-0.5"></i>
<div>
<div class="font-medium">RAM Usage</div>
<div class="text-sm text-[#94a3b8]">Allocate more RAM for better performance</div>
</div>
</div>
<div class="flex items-start">
<i data-feather="check-circle" class="text-green-400 mr-2 mt-0.5"></i>
<div>
<div class="font-medium">CPU Usage</div>
<div class="text-sm text-[#94a3b8]">Within optimal range</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Tunnel Screen -->
<div id="tunnel-screen" class="screen hidden">
<div class="flex items-center justify-between mb-6">
<h2 class="text-xl font-bold">Tunnel</h2>
<button class="btn btn-secondary">
<i data-feather="refresh-cw" class="mr-2"></i>
Refresh
</button>
</div>
<div class="card p-6 mb-6">
<div class="flex items-center justify-between mb-6">
<h3 class="font-medium">ngrok Tunnel</h3>
<div class="flex space-x-3">
<button class="btn btn-primary">
<i data-feather="play" class="mr-2"></i>
Start Tunnel
</button>
<button class="btn btn-secondary" disabled>
<i data-feather="stop" class="mr-2"></i>
Stop Tunnel
</button>
</div>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 gap-6">
<div>
<h4 class="font-medium mb-3">Status</h4>
<div class="flex items-center">
<span class="status-badge stopped">
<i data-feather="circle" class="w-2 h-2 mr-2"></i>
Inactive
</span>
</div>
</div>
<div>
<h4 class="font-medium mb-3">Public URL</h4>
<div class="flex items-center">
<div class="input-field flex-1 truncate">Not active - start tunnel to generate URL</div>
<button class="btn btn-secondary ml-3" disabled>
<i data-feather="copy" class="w-4 h-4"></i>
</button>
</div>
</div>
</div>
</div>
<div class="card p-6">
<h3 class="font-medium mb-4">Tunnel Configuration</h3>
<div class="grid grid-cols-1 md:grid-cols-2 gap-6 mb-6">
<div>
<div class="text-sm text-[#94a3b8] mb-2">Protocol</div>
<select class="input-field w-full">
<option>TCP</option>
<option>HTTP</option>
<option>HTTPS</option>
</select>
</div>
<div>
<div class="text-sm text-[#94a3b8] mb-2">Port</div>
<input type="number" value="25565" class="input-field w-full">
</div>
</div>
<div class="mb-6">
<div class="text-sm text-[#94a3b8] mb-2">Region</div>
<div class="grid grid-cols-2 md:grid-cols-4 gap-3">
<button class="btn btn-secondary">United States</button>
<button class="btn btn-secondary">Europe</button>
<button class="btn btn-secondary">Asia</button>
<button class="btn btn-secondary">Australia</button>
</div>
</div>
<div>
<div class="flex items-center">
<input id="auth-checkbox" type="checkbox" class="w-4 h-4 rounded bg-[#3a3a4a] border-[#3f3f5a] focus:ring-[#00b894]">
<label for="auth-checkbox" class="ml-3 text-sm">
<span class="font-medium">Require authentication</span>
<p class="text-[#94a3b8] mt-1">Users will need to enter a username and password to connect.</p>
</label>
</div>
</div>
</div>
</div>
<!-- Settings Screen -->
<div id="settings-screen" class="screen hidden">
<div class="flex items-center justify-between mb-6">
<h2 class="text-xl font-bold">Settings</h2>
<button class="btn btn-secondary">
<i data-feather="refresh-cw" class="mr-2"></i>
Reset Changes
</button>
</div>
<div class="card p-6 mb-6">
<div class="flex
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=Sahaj33/mc-server-2" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |