ℹ️ An account allows you to subscribe to access the attractions of Spawn Arena leisure centers or our partners. Once registered, you can create family sub-accounts and manage their subscriptions.

Quick Registration

Create your account in 1 click with Google

OR
📝 Create my account
This username will be visible to other players
Mix uppercase, lowercase, numbers and symbols
A validation email will be sent
📄 Terms of Use
🛒 Terms of Sale
function handleGoogleSignIn(response) { var loader = document.createElement('div'); loader.className = 'inscription-loader'; loader.innerHTML = '


Connexion en cours...
'; document.body.appendChild(loader); var url = window.location.origin + '/php/google_signin.php'; fetch(url, { method: 'POST', headers: { 'Content-Type': 'application/x-www-form-urlencoded' }, body: 'credential=' + encodeURIComponent(response.credential) }) .then(function(r) { return r.json(); }) .then(function(data) { if (data.success) { loader.querySelector('.inscription-loader-box').innerHTML = '

' + data.message + ''; setTimeout(function() { window.location.href = data.redirect; }, 1000); } else { document.body.removeChild(loader); alert('Erreur : ' + (data.error || 'Erreur inconnue')); } }) .catch(function(err) { document.body.removeChild(loader); alert('Erreur de connexion : ' + err.message); }); }