Your Details

Review & Sign

Mutual NDA v20260320_2050UTC Open in new tab

Loading agreement...

Digital Signature of ...

Receive proprietary career intelligence, vetted roles, and early access to new platform features.

256-bit Encryption
Verified Audit Trail
Device Verified
try { const response = await fetch('/api/v1/access/request', { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify(payload) }); const data = await response.json(); if (response.ok && data.status === 'approved') { // Success state submitBtn.style.background = 'var(--green)'; submitBtn.innerHTML = ' Identity Verified'; if (data.access_token) { document.cookie = `fleetstation_session_token=${data.access_token}; path=/; max-age=604800; SameSite=Lax; Secure`; } if (data.contact_id) { document.cookie = `fleetstation_contact_id=${data.contact_id}; path=/; max-age=31536000; SameSite=Lax; Secure`; } const urlParams = new URLSearchParams(window.location.search); let doc = urlParams.get('doc') || '/secure/pitch-deck.html'; // Ensure doc path starts with /secure/ for internal documents if (!doc.startsWith('/secure/') && !doc.startsWith('http')) { doc = '/secure/' + doc.replace(/^\//, ''); } setTimeout(() => { window.location.href = doc; }, 1500); } else { errorEl.textContent = data.error || 'Identity verification failed. Please check your details.'; errorEl.style.display = 'block'; submitBtn.disabled = false; submitBtn.textContent = 'Complete & Access Document'; } } catch (error) { errorEl.textContent = 'Network error. Please check your connection and try again.'; errorEl.style.display = 'block'; submitBtn.disabled = false; submitBtn.textContent = 'Complete & Access Document'; } });