![]() Server : Apache/2 System : Linux server-15-235-50-60 5.15.0-164-generic #174-Ubuntu SMP Fri Nov 14 20:25:16 UTC 2025 x86_64 User : gositeme ( 1004) PHP Version : 8.2.29 Disable Function : exec,system,passthru,shell_exec,proc_close,proc_open,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname Directory : /home/gositeme/.cursor-server/data/User/History/-40c31ef/ |
<?php
session_start();
include 'includes/header.php';
?>
<div style="background: #0a0a0a; color: white; padding: 100px 20px; text-align: center; min-height: 100vh;">
<h1 style="font-size: 4rem; margin-bottom: 2rem;">đ Global Notification Test</h1>
<p style="font-size: 1.8rem; margin-bottom: 4rem; color: #a0aec0;">Test the global notification system!</p>
<div style="display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap;">
<button onclick="window.showNotification('Test success message!', 'success')" style="background: linear-gradient(135deg, #48bb78, #38a169); color: white; border: none; padding: 1.5rem 3rem; border-radius: 12px; font-size: 1.6rem; cursor: pointer; transition: all 0.3s ease;">
đ Success Notification
</button>
<button onclick="window.showNotification('Test error message!', 'error')" style="background: linear-gradient(135deg, #f56565, #e53e3e); color: white; border: none; padding: 1.5rem 3rem; border-radius: 12px; font-size: 1.6rem; cursor: pointer; transition: all 0.3s ease;">
â Error Notification
</button>
<button onclick="window.showNotification('Test info message!', 'info')" style="background: linear-gradient(135deg, #667eea, #764ba2); color: white; border: none; padding: 1.5rem 3rem; border-radius: 12px; font-size: 1.6rem; cursor: pointer; transition: all 0.3s ease;">
âšī¸ Info Notification
</button>
</div>
<div style="margin-top: 4rem; padding: 2rem; background: rgba(255,255,255,0.1); border-radius: 12px; max-width: 600px; margin-left: auto; margin-right: auto;">
<h3 style="margin-bottom: 1rem;">How to Use:</h3>
<p style="text-align: left; line-height: 1.6;">
<code>window.showNotification('Your message', 'success')</code><br>
<code>window.showNotification('Your message', 'error')</code><br>
<code>window.showNotification('Your message', 'info')</code>
</p>
</div>
</div>
<?php include 'includes/footer.php'; ?>