Toast

Code HTML

    <button onclick="toast('success/error/warning/info', 'message')">Show Toast</button>
    <!-- Zone des notifications -->
    <div id="notification-area" class="top"></div>
    
Code JAVASCRIPT if you want to use options

    notify({
        type: "success",
        message: "The server configuration changed.",
        duration: 5000 //milliseconds
    })