Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
dc7a0d48c0 |
9
assets/css/custom.css
Normal file
9
assets/css/custom.css
Normal 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
13
assets/js/main.js
Normal 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');
|
||||
});
|
||||
}
|
||||
});
|
||||
Loading…
x
Reference in New Issue
Block a user