28 lines
955 B
HTML
28 lines
955 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Vanilla 1.8.8 — Sulfur</title>
|
|
<style>
|
|
body {
|
|
margin: 0; height: 100vh;
|
|
background: #0a0a0a; color: #fff;
|
|
font-family: 'Inter', sans-serif;
|
|
display: flex; align-items: center; justify-content: center;
|
|
text-align: center;
|
|
}
|
|
.box { max-width: 480px; padding: 40px; }
|
|
h1 { color: #e0df94; font-size: 1.4rem; margin-bottom: 12px; }
|
|
p { color: #a0a0a0; font-size: 0.9rem; line-height: 1.6; }
|
|
code { background: rgba(255,255,255,0.08); padding: 2px 6px; border-radius: 4px; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="box">
|
|
<h1>Vanilla 1.8.8 client not installed yet</h1>
|
|
<p>Replace this file with your actual Eaglercraft 1.8.8 client build, keeping the filename
|
|
<code>eagler_1_8_8.html</code> inside <code>/instances/</code>, and the PLAY button will launch it directly.</p>
|
|
</div>
|
|
</body>
|
|
</html>
|