-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
191 lines (172 loc) · 7.19 KB
/
index.html
File metadata and controls
191 lines (172 loc) · 7.19 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Easter Company | Core Intelligence Hub</title>
<link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;700&family=Poppins:wght@400;700&display=swap" rel="stylesheet">
<style>
:root {
--neon-blue: #00f3ff;
--neon-red: #ff3e3e;
--bg-black: #050507;
--glass-bg: rgba(255, 255, 255, 0.03);
--glass-border: rgba(255, 255, 255, 0.1);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
background-color: var(--bg-black);
color: #fff;
font-family: 'Poppins', sans-serif;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
background-image: radial-gradient(circle at center, rgba(0, 243, 255, 0.03) 0%, transparent 70%);
}
.terminal-container {
width: 90%;
max-width: 800px;
background: var(--glass-bg);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
border: 1px solid var(--glass-border);
border-radius: 20px;
padding: 40px;
text-align: center;
position: relative;
box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
animation: terminalFadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes terminalFadeIn {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}
.logo {
width: 120px;
margin-bottom: 30px;
filter: drop-shadow(0 0 10px rgba(0, 243, 255, 0.2));
animation: pulse 4s infinite ease-in-out;
}
@keyframes pulse {
0%, 100% { transform: scale(1); opacity: 0.8; }
50% { transform: scale(1.05); opacity: 1; }
}
h1 {
font-size: 1.5rem;
letter-spacing: 0.4em;
text-transform: uppercase;
color: var(--neon-blue);
margin-bottom: 20px;
opacity: 0.8;
}
.status-terminal {
background: rgba(0, 0, 0, 0.3);
border-radius: 12px;
padding: 20px;
font-family: 'JetBrains Mono', monospace;
text-align: left;
margin-bottom: 40px;
font-size: 0.9rem;
border: 1px solid rgba(255, 255, 255, 0.05);
line-height: 1.6;
}
.line { margin-bottom: 8px; }
.prompt { color: var(--neon-blue); margin-right: 10px; }
.danger { color: var(--neon-red); font-weight: bold; }
.success { color: #27c93f; }
.eid-form {
display: flex;
flex-direction: column;
gap: 20px;
align-items: center;
}
input {
background: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 12px;
padding: 15px 25px;
color: #fff;
width: 100%;
max-width: 400px;
outline: none;
text-align: center;
font-family: 'JetBrains Mono', monospace;
transition: all 0.3s ease;
}
input:focus {
border-color: var(--neon-blue);
background: rgba(0, 243, 255, 0.05);
box-shadow: 0 0 20px rgba(0, 243, 255, 0.1);
}
button {
padding: 15px 40px;
background: rgba(0, 243, 255, 0.1);
border: 1px solid rgba(0, 243, 255, 0.3);
color: var(--neon-blue);
border-radius: 12px;
text-transform: uppercase;
letter-spacing: 0.2em;
font-weight: 700;
cursor: pointer;
transition: all 0.3s ease;
}
button:hover {
background: var(--neon-blue);
color: #000;
box-shadow: 0 0 30px rgba(0, 243, 255, 0.4);
transform: scale(1.05);
}
.footer {
margin-top: 40px;
font-size: 0.7rem;
color: rgba(255, 255, 255, 0.3);
text-transform: uppercase;
letter-spacing: 0.1em;
}
.blink { animation: blink 1s step-end infinite; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
</style>
</head>
<body>
<div class="terminal-container">
<img src="https://easter.company/static/assets/logo/easter_logo.svg" class="logo" alt="Easter Company">
<h1>Core Intelligence Hub</h1>
<div class="status-terminal">
<div class="line"><span class="prompt">></span>SYSTEM INITIALIZING... <span class="success">OK</span></div>
<div class="line"><span class="prompt">></span>CLUSTERING BIOLOGICAL NODES... <span class="success">OK</span></div>
<div class="line"><span class="prompt">></span>EID (ENTERPRISE IDENTITY) GATEWAY: <span class="danger">OFFLINE</span></div>
<div class="line"><span class="prompt">></span>WARNING: PERSISTENT ACCESS DENIED.</div>
<div class="line"><span class="prompt">></span>PLEASE ENTER LEAD ENGINEER OVERRIDE KEY <span class="blink">_</span></div>
</div>
<div class="eid-form">
<input type="password" id="eid-input" placeholder="EID OVERRIDE KEY">
<button id="eid-submit">Initialize Secure Uplink</button>
</div>
<div class="footer">
© 2026 Easter Company | Engineered for the Singularity
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/marked/marked.min.js"></script>
<script>
document.getElementById('eid-submit').addEventListener('click', function() {
const val = document.getElementById('eid-input').value;
if(val === '0xDARWIN' || val === 'darwin') {
document.querySelector('.status-terminal').innerHTML = '<div class="line"><span class="prompt">></span>EID OVERRIDE ACCEPTED. <span class="success">ACCESS GRANTED</span></div><div class="line"><span class="prompt">></span>DECRYPTING CORE INTELLIGENCE...</div>';
setTimeout(() => {
document.querySelector('.terminal-container').style.maxWidth = '90%';
document.querySelector('.terminal-container').innerHTML = '<h1 style="text-align:left; font-size:2rem;">EASTER COMPANY WIKI</h1><div id="wiki-content" style="text-align:left; overflow-y:auto; max-height:70vh; font-family: sans-serif; line-height:1.6; padding-right:20px;">Loading...</div>';
fetch('https://raw.githubusercontent.com/EasterCompany/EasterCompany/main/docs/DEXTER.md')
.then(r => r.text())
.then(text => {
document.getElementById('wiki-content').innerHTML = marked.parse(text);
});
}, 1500);
} else {
alert('EID System Offline. Invalid Override Key.');
}
});
</script>
</body>
</html>