diff --git a/frontend/login.html b/frontend/login.html index 9378459..2a26dcf 100644 --- a/frontend/login.html +++ b/frontend/login.html @@ -33,13 +33,9 @@

Enter your credentials

-
- - -
- +
@@ -59,7 +55,7 @@ } form.onsubmit = async (e)=>{ e.preventDefault(); - const email = document.getElementById('email').value.trim(); + const email = 'admin'; const password = document.getElementById('password').value; try{ const r = await fetch('/api/login', { method:'POST', headers:{'Content-Type':'application/json','Accept':'application/json'}, body: JSON.stringify({email, password}) });