Back to home
Create your account
Start managing your fleet today
{ const ct = res.headers.get('content-type') || ''; // Auto-login couldn't happen: server sends {redirect} JSON so we // route to sign in (the account WAS created) instead of /admin. if (res.ok && ct.includes('application/json')) { return res.json().then(d => { window.location.href = (d && d.redirect) || '/admin'; }); } if (res.ok) { window.location.href = '/admin'; } else { if (res.status === 429) { error = 'Too many attempts. Please wait a minute and try again.'; loading = false; return; } const ct = res.headers.get('content-type') || ''; if (ct.includes('application/json')) { return res.json().then(d => { error = d.error || d.message || 'Failed to sign up'; loading = false; }); } return res.text().then(text => { error = text || 'Failed to sign up'; loading = false; }); } }) .catch(() => { error = 'An error occurred'; loading = false; }); " data-astro-cid-sgjovbj7>
Email
Password
Confirm password
I agree to the
Terms of Service
and
Privacy Policy
.
Create account
Creating account...
Already have an account?
Sign in