This commit is contained in:
kaipher7
2026-04-24 08:04:58 -06:00
parent c625406ac9
commit 70ce01a551
@@ -303,9 +303,10 @@ function showError(input, message) {
if (!error) {
error = document.createElement('p');
error.className = 'error-message';
error.style.color = 'red';
error.style.color = '#CC0C0C';
error.style.fontSize = '0.9em';
error.style.marginTop = '6px';
error.style.fontWeight = '600';
input.parentElement.appendChild(error);
}