OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
cream
/
landingpage
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
06/17/2025 10:17:24 AM
rwxrwxr-x
📄
index.html
9.49 KB
03/02/2025 02:01:09 PM
rw-r--r--
📄
index1.html
21.2 KB
03/02/2025 02:01:39 PM
rw-r--r--
📄
script.js
811 bytes
03/02/2025 02:01:09 PM
rw-r--r--
📄
styles.css
6.21 KB
03/02/2025 02:01:09 PM
rw-r--r--
Editing: script.js
Close
document.addEventListener('DOMContentLoaded', () => { // Simple interactivity for buttons const ctaButtons = document.querySelectorAll('.cta-button'); ctaButtons.forEach(button => { button.addEventListener('click', () => { alert('Redirecting to sign-up or demo page...'); // Replace with actual redirect logic (e.g., window.location.href = 'signup.html') }); }); // Smooth scrolling for nav links const navLinks = document.querySelectorAll('.nav-links a'); navLinks.forEach(link => { link.addEventListener('click', (e) => { e.preventDefault(); const targetId = link.getAttribute('href').substring(1); document.getElementById(targetId).scrollIntoView({ behavior: 'smooth' }); }); }); });