From ccc79c04892e8e7cf9f9e3aeb1af129b701348fb Mon Sep 17 00:00:00 2001 From: Jeff Emmett Date: Thu, 9 Apr 2026 10:14:18 -0400 Subject: [PATCH] fix: show "Start Application" when no saved session exists Button defaults to green "Start Application" and only switches to white "Restart Application" when localStorage has saved progress. Co-Authored-By: Claude Opus 4.6 --- apply.html | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/apply.html b/apply.html index 44ad1c6..bca26d9 100644 --- a/apply.html +++ b/apply.html @@ -556,7 +556,7 @@ Resume where you left off - +
@@ -1050,6 +1050,10 @@ const saved = localStorage.getItem(STORAGE_KEY); if (saved) { document.getElementById('resume-notice').style.display = 'block'; + const btn = document.getElementById('start-btn'); + btn.textContent = 'Restart Application'; + btn.classList.remove('btn-primary'); + btn.classList.add('btn-secondary'); } })();