OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
cream
/
quiz
/
backup
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
đ
..
-
05/19/2025 10:07:16 AM
rwxr-xr-x
đ
assets
-
02/15/2025 11:20:34 AM
rwxr-xr-x
đ
bregister.php
15.32 KB
05/19/2025 10:07:16 AM
rw-r--r--
đ
callback.php
871 bytes
05/19/2025 10:07:16 AM
rw-r--r--
đ
child_registration.php
9.47 KB
05/19/2025 10:07:16 AM
rw-r--r--
đ
dashboard copy.php
6.72 KB
05/19/2025 10:07:16 AM
rw-r--r--
đ
dashboard.php
5.94 KB
05/19/2025 10:07:16 AM
rw-r--r--
đ
data
-
02/15/2025 11:20:32 AM
rwxr-xr-x
đ
function.php
5.06 KB
05/19/2025 10:07:16 AM
rw-r--r--
đ
index.php
4.64 KB
05/19/2025 10:07:16 AM
rw-r--r--
đ
oauth.php
355 bytes
05/19/2025 10:07:16 AM
rw-r--r--
đ
old_backup
-
05/19/2025 10:07:16 AM
rwxr-xr-x
đ
payment
-
02/15/2025 11:20:34 AM
rwxr-xr-x
đ
payment.php
3.67 KB
05/19/2025 10:07:16 AM
rw-r--r--
đ
process
-
05/19/2025 10:07:16 AM
rwxr-xr-x
đ
register.php
10.96 KB
05/19/2025 10:07:16 AM
rw-r--r--
đ
sendOtp.php
2.32 KB
05/19/2025 10:07:16 AM
rw-r--r--
đ
styles.css
0 bytes
02/15/2025 11:21:44 AM
rw-r--r--
đ
subscription_check.php
1.39 KB
05/19/2025 10:07:16 AM
rw-r--r--
đ
verify.php
2.23 KB
05/19/2025 10:07:16 AM
rw-r--r--
Editing: index.php
Close
<!DOCTYPE html> <html lang="en" class="h-100"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Landing Page</title> <!-- Bootstrap CSS --> <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet"> <link rel="stylesheet" href="assets/css/styles.css"> <style> body { min-height: 100vh; display: flex; flex-direction: column; } .content { flex: 1 0 auto; } .footer { flex-shrink: 0; } </style> </head> <body class="d-flex flex-column h-100"> <!-- Navbar with only logo --> <nav class="navbar navbar-light bg-light shadow-sm"> <div class="container-fluid"> <a class="navbar-brand" href="#"> <img src="assets/img/logo.png" alt="Logo" > </a> </div> </nav> <!-- Main Content --> <main class="content container mt-5 mb-5"> <div class="row"> <div class="col-md-8 offset-md-2 text-center"> <h1 class="display-4 mb-4">Welcome to Our Quiz ā˛Ļā˛ŋā˛ā˛ā˛¤</h1> <p class="lead mb-4"> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam in dui mauris. Vivamus hendrerit arcu sed erat molestie vehicula. Sed auctor neque eu tellus rhoncus ut eleifend nibh porttitor. </p> <div class="mt-4"> <a href="register.php" class="btn btn-primary me-3">Register</a> <a href="#" class="btn btn-outline-secondary" data-bs-toggle="modal" data-bs-target="#signInModal">Sign In</a> </div> </div> </div> </main> <!-- Sign In Modal --> <div class="modal fade" id="signInModal" tabindex="-1"> <div class="modal-dialog"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title">Sign In</h5> <button type="button" class="btn-close" data-bs-dismiss="modal"></button> </div> <div class="modal-body"> <form id="signInForm"> <div class="mb-3"> <label class="form-label">Email</label> <input type="email" class="form-control" required> </div> <div class="mb-3"> <label class="form-label">Password</label> <input type="password" class="form-control" required> </div> <button type="submit" class="btn btn-secondary">Login</button> </form> </div> </div> </div> </div> <!-- Footer --> <footer class="footer bg-light py-3 shadow-sm"> <div class="container text-center"> <span class="text-muted">© 2024 My Website. All Rights Reserved.</span> </div> </footer> <!-- Bootstrap JS and Popper.js --> <script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.11.6/dist/umd/popper.min.js"></script> <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.min.js"></script> <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script> <script> $(document).ready(function() { $('#signInForm').on('submit', function(e) { e.preventDefault(); // Get form data const formData = { email: $('input[type="email"]').val(), password: $('input[type="password"]').val(), }; $.ajax({ url: 'process/loginCheck.php', type: 'POST', data: formData, success: function(response) { if (response.success) { alert(response.message); window.location.href = 'dashboard.php'; // Redirect to dashboard or any logged-in page } else { alert(response.message); } }, error: function() { alert('An error occurred while processing the login.'); }, }); }); }); </script> </body> </html>