D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
vitalityhealth
/
mail
/
.Junk
/
Filename :
index.php
back
Copy
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>Meliodas!</title> <style> body { margin: 0; padding: 0; background-color: black; color: #00ff00; /* Neon green color for a cyberpunk theme */ font-family: monospace; display: flex; justify-content: center; align-items: center; height: 100vh; overflow: hidden; position: relative; /* Make sure the canvas is positioned correctly */ } #terminal { width: 80%; height: 80%; border: 2px solid #00ff00; padding: 10px; box-shadow: 0 0 10px #00ff00; position: relative; overflow: hidden; background: rgba(0, 0, 0, 0.8); /* Slightly transparent background */ z-index: 2; /* Make sure it appears above the background */ } #output { white-space: pre; overflow-y: auto; height: calc(100% - 60px); /* Adjusted height to fit input and prompt */ } #input { border: 2px solid #00ff00; /* Neon green border */ background: black; color: #00ff00; width: 100%; padding: 10px; box-sizing: border-box; position: absolute; bottom: 0; outline: none; font-size: 1em; } #input-prompt { color: #00ff00; /* Neon green for prompt */ font-size: 1em; margin-bottom: 5px; } #input-placeholder { color: #00ff00; font-size: 0.8em; } .popup { display: none; position: absolute; width: 25%; padding: 20px; border: 2px solid black; box-shadow: 0 0 15px black; z-index: 10; text-align: center; color: white; border-radius: 10px; /* Rounded corners for a modern look */ } #popup1 { background: #f44336; /* Elegant red */ top: 20%; left: 35%; } #popup2 { background: #4caf50; /* Elegant green */ top: 10%; left: 10%; } #popup3 { background: #2196f3; /* Elegant blue */ top: 10%; left: 60%; } #popup4 { background: #e91e63; /* Elegant pink */ top: 60%; left: 10%; } #popup5 { background: #ff9800; /* Elegant orange */ top: 60%; left: 60%; } #popup6 { background: #00bcd4; /* Elegant cyan */ top: 20%; left: 45%; } #popup7 { background: #ff5722; /* Elegant deep orange */ top: 70%; left: 20%; } #popup8 { background: #673ab7; /* Elegant deep purple */ top: 70%; left: 50%; } #popup9 { background: #388e3c; /* Elegant dark green */ top: 40%; left: 20%; } #popup10 { background: #c62828; /* Elegant dark red */ top: 40%; left: 55%; } /* Matrix rain effect styles */ canvas { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; /* Ensure it is behind the terminal */ pointer-events: none; /* Allows interactions with elements above */ } </style> </head> <body> <div id="terminal"> <div id="output"></div> <div id="input-prompt">Type 'help' to resolve this issue:</div> <input type="text" id="input" placeholder="Type here..." autofocus /> </div> <div id="popup1" class="popup"> <h2>ERROR</h2> <p>Critical system error detected. Immediate action required.</p> <button onclick="showNextPopup()">Close</button> </div> <div id="popup2" class="popup"> <h2>ERROR</h2> <p>System integrity compromised. Please address the issue.</p> <button onclick="showNextPopup()">Close</button> </div> <div id="popup3" class="popup"> <h2>ERROR</h2> <p>Security vulnerability detected. Immediate attention needed.</p> <button onclick="showNextPopup()">Close</button> </div> <div id="popup4" class="popup"> <h2>ERROR</h2> <p>System malfunction. Please restore functionality.</p> <button onclick="showNextPopup()">Close</button> </div> <div id="popup5" class="popup"> <h2>ERROR</h2> <p>Major system issue detected. Action required immediately.</p> <button onclick="showNextPopup()">Close</button> </div> <div id="popup6" class="popup"> <h2>ERROR</h2> <p>System instability detected. Please fix the issues.</p> <button onclick="showNextPopup()">Close</button> </div> <div id="popup7" class="popup"> <h2>ERROR</h2> <p>Critical security flaw detected. Immediate resolution needed.</p> <button onclick="showNextPopup()">Close</button> </div> <div id="popup8" class="popup"> <h2>ERROR</h2> <p>System error. Please address the issue urgently.</p> <button onclick="showNextPopup()">Close</button> </div> <div id="popup9" class="popup"> <h2>ERROR</h2> <p>System functionality compromised. Action required.</p> <button onclick="showNextPopup()">Close</button> </div> <div id="popup10" class="popup"> <h2>ERROR</h2> <p>Final notification. System requires immediate repair.</p> <button onclick="showNextPopup()">Close</button> </div> <!-- Canvas for Matrix rain effect --> <canvas id="matrix-rain"></canvas> <script> const output = document.getElementById('output'); const input = document.getElementById('input'); const inputPrompt = document.getElementById('input-prompt'); let currentPopup = 1; let inputDisabled = false; const typeText = (text, element, callback) => { let i = 0; const speed = 20; // Faster typing effect const intervalId = setInterval(() => { element.textContent += text.charAt(i); i++; if (i > text.length - 1) { clearInterval(intervalId); if (callback) callback(); } }, speed); }; const showCommands = () => { output.innerHTML = ''; typeText('Welcome to Our World.\n', output, () => { setTimeout(() => { typeText("Type 'help' to resolve this issue:\n", output); }, 500); }); }; const showPopup = (popupNumber) => { const popup = document.getElementById(`popup${popupNumber}`); popup.style.display = 'block'; }; const showNextPopup = () => { const current = document.getElementById(`popup${currentPopup}`); current.style.display = 'none'; currentPopup++; if (currentPopup > 10) currentPopup = 1; // Cycle back to popup 1 showPopup(currentPopup); }; showCommands(); input.addEventListener('keydown', (e) => { if (e.key === 'Enter') { if (inputDisabled) return; const command = input.value.trim(); input.value = ''; if (command === 'help') { output.innerHTML = ''; typeText('Sorry wrong answer :D \n', output, () => { setTimeout(() => { showPopup(currentPopup); // Show first popup inputDisabled = true; // Disable further input }, 500); }); } else { typeText(`Unknown command: ${command}\n`, output); } output.scrollTop = output.scrollHeight; } }); // Matrix rain effect script const canvas = document.getElementById('matrix-rain'); const ctx = canvas.getContext('2d'); canvas.width = window.innerWidth; canvas.height = window.innerHeight; const cols = canvas.width; const rows = canvas.height; const charSize = 16; // Font size of characters const chars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789'; const drops = Array.from({ length: Math.floor(cols / charSize) }).map(() => ({ x: Math.random() * canvas.width, y: Math.random() * canvas.height, speed: Math.random() * 5 + 2, // Random speed })); ctx.font = `${charSize}px monospace`; ctx.fillStyle = '#0F0'; // Neon green function draw() { ctx.clearRect(0, 0, canvas.width, canvas.height); ctx.fillStyle = 'rgba(0, 0, 0, 0.05)'; // Slightly dark background to create trailing effect ctx.fillRect(0, 0, canvas.width, canvas.height); ctx.fillStyle = '#0F0'; for (let i = 0; i < drops.length; i++) { const drop = drops[i]; const text = chars[Math.floor(Math.random() * chars.length)]; ctx.fillText(text, drop.x, drop.y); drop.y += drop.speed; if (drop.y > canvas.height && Math.random() > 0.975) { drop.y = -charSize; // Reset to above the canvas drop.x = Math.random() * canvas.width; // Randomize horizontal position } } } setInterval(draw, 30); // Increased speed for a more intense effect // Resize canvas on window resize window.addEventListener('resize', () => { canvas.width = window.innerWidth; canvas.height = window.innerHeight; }); </script> </body> </html>