feat(login): add login functionality with form validation

This commit is contained in:
Jan K9f 2025-01-19 20:31:01 +01:00
parent a54069f160
commit 89083f832f
Signed by: jank
GPG key ID: 50620ADD22CD330B
7 changed files with 569 additions and 9 deletions

11
tailwind.config.js Normal file
View file

@ -0,0 +1,11 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/**/*.{html,ts}",
],
theme: {
extend: {},
},
plugins: [],
}