Compare commits

..

1 Commits

Author SHA1 Message Date
Flatlogic Bot
dc7a0d48c0 Auto commit: 2025-10-14T12:05:21.142Z 2025-10-14 12:05:21 +00:00
2 changed files with 22 additions and 0 deletions

9
assets/css/custom.css Normal file
View File

@ -0,0 +1,9 @@
body {
font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
.hero {
background: linear-gradient(45deg, #0D6EFD, #549BFF);
color: white;
padding: 100px 0;
}

13
assets/js/main.js Normal file
View File

@ -0,0 +1,13 @@
document.addEventListener('DOMContentLoaded', function () {
const loginForm = document.getElementById('loginForm');
if(loginForm) {
loginForm.addEventListener('submit', function (event) {
if (!loginForm.checkValidity()) {
event.preventDefault();
event.stopPropagation();
}
loginForm.classList.add('was-validated');
});
}
});