diff --git a/public/login.html b/public/login.html
index 2de2fc2..6217a4b 100644
--- a/public/login.html
+++ b/public/login.html
@@ -168,7 +168,13 @@
el.textContent = 'E-mail ou senha incorretos.';
el.style.display = 'block';
}
- document.getElementById('email').focus();
+ const emailParam = params.get('email');
+ if (emailParam) {
+ document.getElementById('email').value = emailParam;
+ document.getElementById('senha').focus();
+ } else {
+ document.getElementById('email').focus();
+ }