La plateforme rencontre actuellement un nombre important de visites, merci de bien vouloir patienter avant de vous connecter.

 {source}<script>
var d1 = new Date ();
var d2 = new Date ( d1 );
var waiting_minutes = 15;
d2.setMinutes ( d1.getMinutes() + waiting_minutes );

var countDownDate = d2.getTime();

// Update the count down every 1 second
var x = setInterval(function() {

// Get today's date and time
var now = new Date ().getTime();

// Find the distance between now and the count down date
var distance = countDownDate - now;

// Time calculations for days, hours, minutes and seconds
var days = Math.floor(distance / (1000 * 60 * 60 * 24));
var hours = Math.floor((distance % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60));
var minutes = Math.floor((distance % (1000 * 60 * 60)) / (1000 * 60));
var seconds = Math.floor((distance % (1000 * 60)) / 1000);

var days_txt = "";
var hours_txt = "";
var minutes_txt = "";
var seconds_txt = "";
if(days != 0) {days_txt = days + "d ";}
if(hours != 0) {hours_txt = hours + "h ";}
if(minutes != 0) {minutes_txt = minutes + "m ";}
if(seconds != 0) {seconds_txt = seconds + "s ";}
document.getElementById("wait").innerHTML = "<h1 style=\"text-align: center; color: #9B080A;\">" + days_txt + hours_txt + minutes_txt + seconds_txt + "</h1>";

// If the count down is over, write some text
if (distance < 0) {
window.location.href = "/";
clearInterval(x);
}
}, 1000);
</script>
{/source}