Fix response displayed on login page

This commit is contained in:
= 2024-12-29 12:25:59 -05:00
parent 59b9222b78
commit 72a2cc38d6

View File

@ -111,7 +111,8 @@
</div>
<div class="text-block text-center my-3">
<span class="text-small font-weight-semibold"><a href="https://craftycontrol.com/">Crafty Control</a> </span>
<span class="text-small font-weight-semibold"><a href="https://craftycontrol.com/">Crafty Control</a>
</span>
</div>
<div class="text-block text-center my-3">
@ -191,7 +192,7 @@
location.href = `/panel/dashboard`
}
} else {
$("#error-field").html(responseData.error);
$("#error-field").html(responseData.error_data);
}
});
</script>