Add styling to BasketItem

Move footer style to its own file
Make the contact form a bit more intuitive
General cleanup
This commit is contained in:
Michał Gdula 2024-05-03 13:10:37 +01:00
parent 764aaa48ea
commit 6f97ad9a4c
9 changed files with 146 additions and 84 deletions

View file

@ -28,7 +28,17 @@
}
function onSubmit() {
nameValid = true;
emailValid = true;
messageValid = false;
formMessage = postContactEmail(name, email, message);
formMessage.catch(() => {
validateName();
validateEmail();
validateMessage();
});
}
</script>