added update profile modal, adjusted forms, and fixed account update in backend

This commit is contained in:
2026-01-03 19:46:31 +01:00
parent f3a2c98643
commit f71d1ff9ac
12 changed files with 270 additions and 17 deletions

View File

@@ -24,6 +24,7 @@ body,
--accent: #f27aa3;
--accent-hover: #ff91b3;
--border: #2a2f3b;
--error: #ff5050;
--radius: 8px;
}
@@ -151,6 +152,27 @@ i:hover {
outline: none;
}
.input-group {
display: flex;
flex-direction: column;
gap: 0.3rem;
}
.input-group label {
font-size: 0.8rem;
font-weight: 600;
color: var(--muted);
}
.error-message {
color: var(--error);
font-size: 0.9rem;
}
.modal {
margin: 30px;
}
@media (hover: hover) {
i:hover {
color: var(--text);