OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
knoblyExpressLandingPage
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
05/09/2025 11:18:49 AM
rwxr-xr-x
📄
about.php
2.06 KB
08/20/2024 11:17:08 AM
rw-r--r--
📁
assets
-
08/20/2024 11:17:08 AM
rwxr-xr-x
📄
blog.php
5.35 KB
08/20/2024 11:17:08 AM
rw-r--r--
📁
cream
-
09/23/2024 04:31:51 AM
rwxr-xr-x
📄
dashboard.php
788 bytes
08/20/2024 11:17:08 AM
rw-r--r--
📄
db.php
378 bytes
08/20/2024 11:17:08 AM
rw-r--r--
📄
footer.html
3.76 KB
08/20/2024 11:17:08 AM
rw-r--r--
📄
forgot-password-handler.php
2.13 KB
08/20/2024 11:17:08 AM
rw-r--r--
📄
forgot-password.php
4.52 KB
08/20/2024 11:17:08 AM
rw-r--r--
📁
includes
-
08/20/2024 11:17:08 AM
rwxr-xr-x
📄
index.php
5.94 KB
08/20/2024 11:17:08 AM
rw-r--r--
📄
login-handler.php
869 bytes
08/20/2024 11:17:08 AM
rw-r--r--
📄
login.php
4.72 KB
08/20/2024 11:17:08 AM
rw-r--r--
📄
navbar.php
830 bytes
08/20/2024 11:17:08 AM
rw-r--r--
📄
refundPolicy.php
5.99 KB
08/20/2024 11:17:08 AM
rw-r--r--
📄
reset-password-handler.php
910 bytes
08/20/2024 11:38:06 AM
rw-r--r--
📄
reset-password.php
2.95 KB
08/21/2024 05:04:57 AM
rw-r--r--
📄
service.php
4.29 KB
08/20/2024 11:17:08 AM
rw-r--r--
📄
signup-handler.php
1.04 KB
08/20/2024 11:17:08 AM
rw-r--r--
📄
signup.php
5.98 KB
08/20/2024 11:17:08 AM
rw-r--r--
📄
usagePolicy.php
15.21 KB
08/20/2024 11:17:08 AM
rw-r--r--
Editing: reset-password.php
Close
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css"> <title>Reset Password - Knobly Xpress</title> <style> body { font-family: 'Arial', sans-serif; background: linear-gradient(135deg, #0052cc, #0099ff); margin: 0; padding: 0; display: flex; justify-content: center; align-items: center; height: 100vh; color: #333; } .auth-container { background-color: white; border-radius: 10px; box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1); padding: 40px; width: 100%; max-width: 400px; text-align: center; } .auth-container h2 { margin-bottom: 20px; color: #0052cc; } .input-group { display: flex; align-items: center; margin-bottom: 20px; border: 1px solid #ddd; border-radius: 5px; padding: 10px; background-color: #f9f9f9; } .input-group i { color: #0052cc; margin-right: 10px; } .input-group input { border: none; background: transparent; flex: 1; padding: 10px; font-size: 16px; color: #333; } .input-group input:focus { outline: none; } button { background-color: #0052cc; color: white; border: none; padding: 12px 20px; font-size: 16px; border-radius: 5px; width: 100%; cursor: pointer; transition: background-color 0.3s ease; } button:hover { background-color: #0041a3; } @media (max-width: 600px) { .auth-container { padding: 20px; margin: 0 15px; } .input-group { padding: 8px; } button { padding: 10px; } } </style> </head> <body> <div class="auth-container"> <h2>Reset Your Password</h2> <form action="reset-password-handler.php" method="POST"> <input type="hidden" name="token" value="<?php echo $_GET['token']; ?>"> <div class="input-group"> <i class="fa fa-unlock-alt"></i> <input type="password" name="newPassword" placeholder="New Password" required /> </div> <button type="submit">Reset Password</button> </form> </div> </body> </html>