Coming soon

Please enter the access code:

Incorrect code.

(function() { const PASSWORD = "Excel+-1010"; // set your password const loginBtn = document.getElementById("login-btn"); const codeInput = document.getElementById("access-code"); const errorMsg = document.getElementById("login-error"); const loginForm = document.getElementById("login-container"); const protectedSection = document.getElementById("enclave-home"); // use the main section // Sanity check if (!loginBtn || !codeInput || !loginForm || !protectedSection) { console.warn("Login gate: missing elements"); return; } function unlockSite() { loginForm.style.display = "none"; protectedSection.style.display = "block"; // Optionally scroll to the home section after reveal: protectedSection.scrollIntoView({ behavior: 'smooth' }); } loginBtn.addEventListener("click", () => { if (codeInput.value === PASSWORD) { unlockSite(); } else { errorMsg.style.display = "block"; } }); codeInput.addEventListener("keyup", (e) => { if (e.key === "Enter") loginBtn.click(); }); })();
ALWAYS-ON
// JavaScript to dynamically apply the flashing effect (optional control) const textElement = document.getElementById('flashingText'); // Function to start flashing (CSS handles the animation, but JS can toggle it) function startFlashing() { textElement.style.animation = 'flash 1s infinite'; } // Function to stop flashing (if needed) function stopFlashing() { textElement.style.animation = 'none'; textElement.style.opacity = '1'; // Ensure text remains visible when stopped } // Start flashing on page load startFlashing(); // Optional: Uncomment the lines below to toggle flashing every 5 seconds /* setInterval(() => { if (textElement.style.animation === 'none') { startFlashing(); } else { stopFlashing(); } }, 5000); */

The HEALTHCARE
Shift-Match Marketplace

4.8 / 5.0  ⭐️⭐️⭐️⭐️☆ | 348 Employers already matched.

🏥 Health Employers:

The Shift Match Marketplace

ALWAYS-ON HEALTHCARE STAFFING.
(Rapid Night Shift RN/CNA Placement)

👔 Pre-vetted CNAs and RNs Shift-Matched with
rural hospitals, ERs, and ICUs in just 72 hours.

👔 Right skill level—Graduate, Skilled, or Professional

👔 Competitive rates | $23–$33.50/hour

Stripe logo
Google logo

ALWAYS-ON
Looking for Night Shift Opportunities?

🙋 Join JobEnclave to access high-demand
night shift roles with top pay | $16–$22.50/hour

🙋 Land your dream nurse role faster—
without the wait or the fluff.

🙋 Rapid placement — Top Pay.

Struggling with night shift shortages? JobEnclave’s advanced matching technology delivers pre-vetted CNAs and RNs tailored to your needs, saving you time and ensuring quality care. Sign up today for a free consultation to explore how our $500/month subscription can solve your staffing challenges—over 350,000 professionals trust similar platforms (SnapCare, 2025).

4.7 / 5.0  ⭐️⭐️⭐️⭐️⭐️ | 348 Nurses already matched.

👩⚕️ Nurses (RNs & CNAs):

The Shift Match Marketplace

// JavaScript to dynamically apply the flashing effect (optional control) const textElement = document.getElementById('flashingText'); // Function to start flashing (CSS handles the animation, but JS can toggle it) function startFlashing() { textElement.style.animation = 'flash 1s infinite'; } // Function to stop flashing (if needed) function stopFlashing() { textElement.style.animation = 'none'; textElement.style.opacity = '0.6'; // Ensure text remains visible when stopped } // Start flashing on page load startFlashing(); // Optional: Uncomment the lines below to toggle flashing every 5 seconds /* setInterval(() => { if (textElement.style.animation === 'none') { startFlashing(); } else { stopFlashing(); } }, 9000); */

🏥: Bonuses ($100 for signing up).
Start working faster )

Stripe logo
Google logo
Parse Your Resume
Select a PDF and click “Parse Resume” to see results here.
document.addEventListener('DOMContentLoaded', function() { var btn = document.getElementById('parseBtn'); var input = document.getElementById('fileInput'); var output = document.getElementById('output'); if (btn) btn.disabled = false; if (btn && input && output) { btn.onclick = function() { if (input.files.length === 0) { output.innerText = 'Please select a file first.'; return; } const file = input.files[0]; const reader = new FileReader(); reader.onload = async function(e) { const base64 = e.target.result.split(',')[1]; output.innerText = 'Parsing...'; try { const response = await fetch('https://jobenclave-proxy.netlify.app/.netlify/functions/parseResume', { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify({ filename: file.name, filedata: base64, version: '8.0.0' }) }); const data = await response.json(); output.innerText = JSON.stringify(data, null, 2); } catch (err) { output.innerText = 'Error: ' + err; } }; reader.readAsDataURL(file); } } });

Marketplace Benefits

👔 For Employers:

  1. Always-On Bench – browse a live pool of pre-verified candidates instead of reposting jobs.

  2. Instant Credential Check – blockchain wallets confirm skills before the interview is booked.

  3. Pay-Per-Qualified Applicant – only pay for talent who meet your scorecard today.

🙋 Job Candidates

  1. Always-On Spotlight – stay visible to hand-picked companies even when you’re not actively applying.

  2. Instant Fit Alerts – get prompts the moment a role matches your skill wallet.

  3. Free AI Résumé Tune-Up – improve visibility every month, automatically.

what early users are saying

TESTIMONIALS

🙋♀️ Land your dream role faster — without the wait or the fluff

🧑💼 Get access to job-ready professionals

How It Works

document.addEventListener("DOMContentLoaded", function () { window.dataLayer = window.dataLayer || []; window.gtag = window.gtag || function() { dataLayer.push(arguments); }; const ctas = document.querySelectorAll('.cta-buttons a'); const roleFld = document.getElementById('form01-role'); const empText = document.getElementById('employer_text'); const jsText = document.getElementById('jobseeker_text'); function toggleBlurbs() { const val = (roleFld?.value || '').toLowerCase().trim(); if (val === 'employer') { if (typeof toggleEmployerFields === 'function') toggleEmployerFields(); if (empText) empText.style.display = 'block'; if (jsText) jsText.style.display = 'none'; } else if (val === 'job seeker' || val === 'jobseeker') { if (typeof toggleEmployerFields === 'function') toggleEmployerFields(); if (empText) empText.style.display = 'none'; if (jsText) jsText.style.display = 'block'; } else { if (empText) empText.style.display = 'none'; if (jsText) jsText.style.display = 'none'; } } toggleBlurbs(); if (roleFld) roleFld.addEventListener("change", toggleBlurbs); ctas.forEach(cta => { cta.addEventListener('click', function () { let roleValue = null; if (cta.classList.contains('employer')) { roleValue = 'Employer'; } else if (cta.classList.contains('seeker')) { roleValue = 'Job Seeker'; } else { return; } setTimeout(() => { if (roleFld && roleValue) { const matchOption = Array.from(roleFld.options).find(o => o.text.toLowerCase().includes(roleValue.toLowerCase())); if (matchOption) { Array.from(roleFld.options).forEach(o => o.selected = false); matchOption.selected = true; } else { } const event = new Event('change'); roleFld.dispatchEvent(event); if (typeof toggleEmployerFields === 'function') toggleEmployerFields(); toggleBlurbs(); } }, 150); if (window.gtag) { gtag('event', 'click', { event_category: 'CTA Button', event_label: roleValue + ' CTA' }); } }); }); });

👔 For Employers

📝
Post what you need
Fill a simple request. We'll handle the vetting.
🎯
Get 3 qualified matches
We’ll send top-fit candidates to your inbox.
Hire fast
No fluff. No long process. Just real results.

🙋♀️ For Job Seekers

📄
Submit your info once
We verify your skills fast and set you up for success.
🚀
Get job invites
No more cold apps. Get roles that match your skills.
💼
Land your job
Interview, sign, and onboard faster than ever.

Join the Always-On wait-list

👔 Your Next Hire is Already Vetted.
Skip the job board chaos.
Get 3 free qualified applicants — matched and ready.
🔹24-hour delivery of applicants.🔹No upfront commitment.🔹100% verified credentials - Always-ON.

🙋 Skip the Job Board. Get Hired Faster.
The first 200 early birds receive lifetime premium access. No spam. No ghosting.
🔹Private employer network - Always-On🔹Interview coaching (included)🔹Auto-apply with one click


Join the Always-On Shift Match Marketplace.

Completely fill out the form to be Always-Ready for a perfect match with an Always-On prevetted talent.

🚀 Struggling with night shift shortages? JobEnclave’s advanced matching technology delivers pre-vetted CNAs and RNs tailored to your needs.

🚀 Step 1 of 3 – Demographic Details

Immediate Staffing Request Form
Get your perfect match tonight.

🚀 Maximize your staffing solution!
Please provide complete details about your facility and get matched with pre-vetted CNAs and RNs in just 72 hours. Complete all fields to ensure a swift response from our team.

🚀 Step 2 of 3 – Request Details Part 1

Immediate Staffing Request Form
Get your perfect match tonight.

🚀 Matching you with the most placeable candidate (MPC) is our specialty. Complete the form and we will match you with the right talent.

🚀 Step 3 of 3 – Request Details Part 2

Under Construction

Enclave$100 Referral Program

Enclave$100 Referral Form

Complete the form and earn $100 for each person you refer to Jobenclave.

Legal - Terms and Privacy Policy

(function() { var btns = document.querySelectorAll('#legal-accordion .legal-accordion-btn'); var panels = document.querySelectorAll('#legal-accordion .legal-accordion-panel'); for (let i = 0; i < btns.length; i++) { btns[i].onclick = function() { // Close all for (let j = 0; j < panels.length; j++) { if (i !== j) { btns[j].classList.remove('active'); panels[j].classList.remove('show'); } } // Toggle this btns[i].classList.toggle('active'); panels[i].classList.toggle('show'); } } })();
window.addEventListener('load', function() { console.log('Window fully loaded'); setTimeout(function() { console.log('Running accordion script after 500ms delay'); var accordion = document.getElementById('legal-accordion'); if (!accordion) { console.error('Accordion element not found'); return; } console.log('Accordion element found'); var btns = accordion.getElementsByClassName('legal-accordion-btn'); console.log('Found ' + btns.length + ' buttons'); Array.from(btns).forEach(function(btn, i) { btn.onclick = function() { console.log('Button ' + (i + 1) + ' clicked'); var panel = btn.nextElementSibling; if (panel.style.display === 'block') { panel.style.display = 'none'; } else { panel.style.display = 'block'; } }; }); }, 500); // 500ms delay });

Thank You

You’re Now officially Always-On!

Your place on the early-access list is locked.

What Happens Next?

✅ Confirmation email — Check your inbox (and spam folder) for a “Welcome to JobEnclave” message.
✅ Early-access invite — We’ll send your personal link as soon as the private beta opens.
✅ Status updates — Expect one short progress email every few weeks (no fluff, no spam.)

Boost your spot in line
Share your unique link;
Each referral moves you up the queue.

Share on LinkedIn

Share on X

Need help? Email [email protected]
Follow the build in public → @JobEnclave

© 2025 JobEnclave™ · All rights reserved · Privacy

/*Mobile friendly stacking*/ /*Animation*/ /*Headline*/