Compare commits

..

No commits in common. "ai-dev" and "master" have entirely different histories.

2 changed files with 0 additions and 22 deletions

View File

@ -1,9 +0,0 @@
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;
}

View File

@ -1,13 +0,0 @@
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');
});
}
});