diff --git a/portal/login.html b/portal/login.html
index cade984..2b458ac 100644
--- a/portal/login.html
+++ b/portal/login.html
@@ -366,13 +366,14 @@
const select = document.getElementById('businessSelect');
if (this.businesses.length === 0) {
- select.innerHTML = '';
- select.disabled = true;
- document.getElementById('continueBtn').disabled = true;
+ // No businesses - add wizard option only
+ select.innerHTML = '';
+ const wizardOption = document.createElement('option');
+ wizardOption.value = 'NEW_WIZARD';
+ wizardOption.textContent = '✨ Create New Business';
+ select.appendChild(wizardOption);
} else {
select.innerHTML = '';
- select.disabled = false;
- document.getElementById('continueBtn').disabled = false;
this.businesses.forEach(biz => {
const option = document.createElement('option');
@@ -385,8 +386,6 @@
const wizardOption = document.createElement('option');
wizardOption.value = 'NEW_WIZARD';
wizardOption.textContent = '✨ New Business Wizard';
- wizardOption.style.fontWeight = 'bold';
- wizardOption.style.color = 'var(--primary)';
select.appendChild(wizardOption);
}
},