From 248280cb5091ec611c247b57df51797a2ab6df4f Mon Sep 17 00:00:00 2001 From: profilesearch <222277199+profilesearch@users.noreply.github.com> Date: Tue, 21 Jul 2026 11:29:07 -0700 Subject: [PATCH 1/2] Clarify saved draft during authentication --- frontend/index.html | 9 +++++++-- frontend/tests/browser-regression.spec.js | 17 +++++++++++++++++ 2 files changed, 24 insertions(+), 2 deletions(-) diff --git a/frontend/index.html b/frontend/index.html index be7dabf..d1b2e2c 100644 --- a/frontend/index.html +++ b/frontend/index.html @@ -2368,13 +2368,18 @@

${esc(job.title)}

function renderAuth(mode) { const isLogin = mode === 'login'; const redirect = getQuery().get('redirect') || ''; + const hasSavedJobDraft = redirect === 'post-job' || redirect.startsWith('post-job?'); + const authTitle = hasSavedJobDraft ? 'Your job draft is saved' : (isLogin ? 'Welcome back' : 'Join GoHireHumans'); + const authSubtitle = hasSavedJobDraft + ? 'Sign in or create a free account to review it. Nothing has been posted or charged.' + : (isLogin ? 'Sign in to your account' : (redirect ? 'Create an account to continue your selected task or application.' : 'Request QA, browse services, or offer your skills — free to join.')); document.getElementById('app').innerHTML = `
-

${isLogin ? 'Welcome back' : 'Join GoHireHumans'}

-
${isLogin ? 'Sign in to your account' : (redirect ? 'Create an account to continue your selected task or application.' : 'Request QA, browse services, or offer your skills — free to join.')}
+

${authTitle}

+
${authSubtitle}
${GOOGLE_CLIENT_ID ? `