Vul uw gegevens in om toegang te krijgen tot het CMS.
/**
* Reusable Custom Message Toast
*
* This component displays a custom notification for success, error, or info messages.
*
* How to use:
* 1. Set a session variable in your PHP code:
* $_SESSION['message_success'] = "Your message here";
* or
* $_SESSION['message_error'] = "Error message here";
*
* 2. Paste the code in the pages footer.
*
* 3. On page load, the toast will automatically show the message and disappear after a few seconds when activated with like a form submission.
*
* You can also manually trigger the toast using JavaScript:
* showCustomToast("Main message", "Sub message", "success", 3000);
* // Types: 'success', 'error', 'info'
*/
?>