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 ? `