<script>

document.addEventListener('DOMContentLoaded', function () {

var msg = document.createElement('div');

msg.style.cssText = 'font-family:Arial,sans-serif;text-align:center;padding:100px 20px;';

msg.innerHTML = '<h2>Redirecting you to the Fragments Club...</h2><p>Please wait a moment.</p>';

document.body.appendChild(msg);

setTimeout(function () {

location.href = 'https://fragments.bleeche.com/dashboard/en/login';

}, 1200);

});

</script>