feat: Adds privacy policy.
All checks were successful
CI / Linux Tests (push) Successful in 8m30s

This commit is contained in:
2026-02-10 16:26:23 -05:00
parent dc9f51c04f
commit 08e67ce308
12 changed files with 1225 additions and 6 deletions

View File

@@ -22,7 +22,16 @@ struct LoginForm: HTML, Sendable {
var body: some HTML {
ModalForm(id: "loginForm", closeButton: false, dismiss: false) {
h1(.class("text-2xl font-bold mb-6")) { style.title }
Row {
h1(.class("text-2xl font-bold mb-6")) { style.title }
a(
.class("btn btn-link"),
.href(route: .privacyPolicy),
.target(.blank)
) {
"Privacy Policy"
}
}
form(
.method(.post),
@@ -78,6 +87,7 @@ struct LoginForm: HTML, Sendable {
"At least one uppercase letter"
}
}
}
div(.class("flex")) {