Compare commits

...
2 Commits
Author SHA1 Message Date
ben 63bfaf9619 update 2026-08-18 19:14:30 +02:00
ben bbb784c3f1 ik hou zo veel van kaaaas
jammie
2026-08-18 19:05:38 +02:00
2 changed files with 64 additions and 1 deletions
+1 -1
View File
@@ -295,7 +295,7 @@ def send_password_reset_email(email: str, token: str):
raise RuntimeError("SMTP configuration is incomplete")
password_reset_url = (
f"https://ben.de-roo.org/api/update-password?token={token}"
f"https://ben.de-roo.org/api/update-password_page?token={token}"
)
message = EmailMessage()
+63
View File
@@ -0,0 +1,63 @@
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: system-ui, sans-serif;
background-color: #3d3846;
color: #f5f5f5;
min-height: 100vh;
}
.container {
width: min(1100px, 90%);
margin: 0 auto;
}
h1 {
font-size: 3rem;
line-height: 1.1;
}
p {
color: #a9adb7;
line-height: 1.6;
}
.button {
display: inline-block;
padding: 0.8rem 1.2rem;
border-radius: 8px;
text-decoration: none;
font-weight: 600;
background: #ffffff;
color: #111;
}
.button:hover {
opacity: 0.85;
}
.hero {
min-height: 100vh;
display: flex;
align-items: center;
}
.hero-content {
max-width: 650px;
}
.hero-content p {
margin-top: 1rem;
max-width: 500px;
}
.hero-actions {
display: flex;
gap: 1rem;
margin-top: 2rem;
}