OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
creator
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
05/09/2025 11:18:49 AM
rwxr-xr-x
📄
about.html
3.7 KB
01/21/2025 10:39:11 AM
rw-r--r--
📄
account.php
48.89 KB
01/21/2025 10:39:12 AM
rw-r--r--
📄
activate.php
2.58 KB
01/21/2025 10:39:12 AM
rw-r--r--
📁
assets
-
01/21/2025 10:39:59 AM
rwxr-xr-x
📄
contact.html
3.43 KB
01/21/2025 10:39:12 AM
rw-r--r--
📄
create.php
42.17 KB
01/21/2025 10:39:15 AM
rw-r--r--
📄
creator.php
8.56 KB
01/21/2025 10:39:15 AM
rw-r--r--
📁
genai
-
01/21/2025 10:39:32 AM
rwxr-xr-x
📁
inc
-
01/21/2025 10:39:38 AM
rwxr-xr-x
📄
index.php
3.78 KB
01/21/2025 10:39:16 AM
rw-r--r--
📄
logInCheck.php
4.75 KB
01/21/2025 10:39:16 AM
rw-r--r--
📄
more.php
9.62 KB
01/21/2025 10:39:17 AM
rw-r--r--
📄
privacy.html
12.52 KB
01/21/2025 10:39:17 AM
rw-r--r--
📄
refund.html
9.15 KB
01/21/2025 10:39:19 AM
rw-r--r--
📄
request_article.php
21.9 KB
01/21/2025 10:39:21 AM
rw-r--r--
📄
reset.html
5.09 KB
01/21/2025 10:39:19 AM
rw-r--r--
📄
sign-in.php
28.81 KB
01/21/2025 10:39:22 AM
rw-r--r--
📄
signInProcess.php
11.1 KB
01/21/2025 10:39:22 AM
rw-r--r--
📄
usage.html
38.19 KB
01/21/2025 10:39:25 AM
rw-r--r--
📁
videoAI
-
01/21/2025 10:39:44 AM
rwxr-xr-x
📄
view.php
13.63 KB
01/21/2025 10:39:25 AM
rw-r--r--
Editing: index.php
Close
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Knobly Cream: Create • Reach • Measure</title> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/aos/2.3.1/aos.css"> <link rel="stylesheet" href="assets/css/cream.css"> <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/aos/2.3.1/aos.js"></script> <script> $(document).ready(function() { // Initialize AOS after DOM is loaded AOS.init(); const images = [ 'assets/img/home_screen1.jpg', 'assets/img/home_screen2.jpg', 'assets/img/home_screen3.jpg', 'assets/img/home1.webp', 'assets/img/home2.webp', 'assets/img/home3.webp' ]; // Get the current index from localStorage, or start at 0 let currentIndex = parseInt(localStorage.getItem('bgIndex')) || 0; function changeBackground() { // Set the current background image $('.index-background').css('background-image', `url(${images[currentIndex]})`); // Update the index for the next load currentIndex = (currentIndex + 1) % images.length; // Loop back to the start // Save the current index in localStorage localStorage.setItem('bgIndex', currentIndex); } changeBackground(); // Set initial background setInterval(changeBackground, 20000000); // Change image every 2 seconds (Note: You might want to adjust this interval time) // Check for the presence of the 'knobly_user_data' cookie if (checkCookie('knobly_user_data')) { window.location.href = '/stream.php'; } else { console.log('No Cookies found'); } // Function to check for the presence of the 'knobly_user_data' cookie function checkCookie(cookieName) { var cookies = document.cookie; return cookies.split(';').some(function(cookie) { return $.trim(cookie).startsWith(cookieName + '='); }); } }); </script> </head> <body> <div class="index-hero" data-aos="fade-in"> <div class="index-background"></div> <div class="index-hero-content"> <img src="assets/img/logo.black.png" alt="Creators Hub Logo" class="index-logo"> <h1>Welcome to</h1> <h2>Creators Hub: <br>Empowering Your Content Creation</h2> <p>Unleash your creativity with our cutting-edge CRM, GenAI, and multimedia tools</p> <a href="sign-in.php?type=login"><button class="cta">Get Started</button></a> </div> </div> <div class="index-story" data-aos="fade-up"> <h2>Our Story</h2> <p>Creators Hub was designed to revolutionize content creation. With our advanced AI-powered tools, CRM system, and seamless video & audio integration, we empower creators to bring their vision to life effortlessly.</p> </div> <div class="googlePlaystoreLink mt-4" style="display: flex; justify-content:center; padding:20px;"> <a href="https://play.google.com/store/apps/details?id=com.knobly.cream&pcampaignid=web_share&pli=1"> <img src="./assets/img/playstore.png" alt="Download on Google Play" width="auto" height="56" style="border-radius: 4px; position:relative; bottom:3px"> </a> </div> <?php include 'assets/php/indexFooter.php'; ?> </body> </html>