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');
}
})();