Create your account
Join Viamonte Exchange and start trading real estate.
// Store token and user localStorage.setItem('auth_token', data.token); localStorage.setItem('auth_user', JSON.stringify(data.user)); // Bridge: establish server-side session try { await fetch('/auth/session', { method: 'POST', headers: { 'Content-Type': 'application/json', 'Accept': 'application/json' }, body: JSON.stringify({ token: data.token }) }); } catch (_) { /* session bridge is best-effort */ } successEl.textContent = 'Account created successfully! Redirecting...'; successEl.classList.remove('hidden'); setTimeout(() => { window.location.href = 'https://viamonte.exchange/dashboard'; }, 600);
Join Viamonte Exchange and start trading real estate.