OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
cream
/
quiz
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
06/17/2025 10:17:24 AM
rwxrwxr-x
📄
admin.php
2.97 KB
05/19/2025 10:07:16 AM
rw-r--r--
📁
adminProcess
-
05/19/2025 10:07:16 AM
rwxr-xr-x
📁
assets
-
02/15/2025 11:20:33 AM
rwxr-xr-x
📁
backup
-
05/19/2025 10:07:16 AM
rwxr-xr-x
📄
editData.php
16.75 KB
05/19/2025 10:07:16 AM
rw-r--r--
📄
editQuestion.php
8.03 KB
05/19/2025 10:07:16 AM
rw-r--r--
📄
editQuiz.php
8.3 KB
05/19/2025 10:07:16 AM
rw-r--r--
📄
footer.php
1.86 KB
05/19/2025 10:07:16 AM
rw-r--r--
📁
forms
-
05/19/2025 10:07:16 AM
rwxr-xr-x
📄
go_back.php
2.96 KB
05/19/2025 10:07:16 AM
rw-r--r--
📄
index.php
12.68 KB
05/19/2025 10:07:16 AM
rw-r--r--
📄
login.php
4.34 KB
05/19/2025 10:07:16 AM
rw-r--r--
📄
nav_scripts.php
1.96 KB
05/19/2025 10:07:16 AM
rw-r--r--
📄
navbar.php
2.41 KB
05/19/2025 10:07:16 AM
rw-r--r--
📄
navbar_login.php
2.34 KB
05/19/2025 10:07:16 AM
rw-r--r--
📄
payment.php
12.06 KB
05/19/2025 10:07:16 AM
rw-r--r--
📄
quiz.php
20.67 KB
05/19/2025 10:07:16 AM
rw-r--r--
📄
quizControl.php
8.4 KB
05/19/2025 10:07:16 AM
rw-r--r--
📄
quizQuestions.php
8.85 KB
05/19/2025 10:07:16 AM
rw-r--r--
📄
quizSubmitPage.php
39 bytes
05/19/2025 10:07:16 AM
rw-r--r--
📄
register.php
21.65 KB
05/19/2025 10:07:16 AM
rw-r--r--
📁
test
-
02/15/2025 11:20:34 AM
rwxr-xr-x
📁
test1
-
05/19/2025 10:07:16 AM
rwxr-xr-x
📁
yt_subscription
-
05/19/2025 10:07:16 AM
rwxr-xr-x
Editing: go_back.php
Close
<style> .go-back-btn { background-color: #007bff; color: white; cursor: pointer; border-radius: 4px; display: flex; align-items: center; } /* .go-back-bar { padding: 10px 20px; border: none !important; top: 100px; left: 100px; width: 100%; z-index: 999; } */ .go-back-bar { position: absolute; padding: 10px 20px; border: none !important; top: 100px; left: 100px; /* width: 100%; */ z-index: 1000; } .go-back-btn { background-color: transparent; color: white; border: none !important; border-radius: 4px !important; /* display: flex; */ /* align-items: center; */ } @media screen and (max-width:540px) { .go-back-bar { /* background-color: #f8f9fa; */ margin: 10px 0px; padding: 0px 20px; /* text-align: center; */ border: none !important; position: relative; top: 10px; left: 1px; /* width: 100%; */ z-index: 999; } } /* @media screen and (min-width:541px) { .go-back-bar { margin: 10px 10px; padding: 10px 20px; border: none !important; top: 50px; left: -15px; width: 100%; z-index: 999; } } */ .go-back-bar button { background-color: transparent; } body.dark-mode .go-back-btn i { margin-right: 8px; color: white; /* Space between icon and text */ } body.light-mode .go-back-btn i { margin-right: 8px; color: black; /* Space between icon and text */ } .go-back-btn:hover { background-color: transparent; } </style> <div class="go-back-bar"> <button class="go-back-btn" onclick="history.back();"> <i class="fas fa-arrow-left"></i> </button> </div> <script> // Call the function to replace the history entry on page load window.onload = function() { updateHistoryState(); // Automatically update history state }; // Function to automatically replace the current history entry with dynamic data function updateHistoryState() { const currentURL = window.location.href; // Get current URL const currentTitle = document.title; // Get current page title // Create a dynamic state object (customize this as needed) const stateObject = { page: currentTitle, // Use the title as part of the state url: currentURL // Include the full URL in the state }; // Replace the current history entry with the new state, title, and URL history.replaceState(stateObject, currentTitle, currentURL); } </script>