feat: Implement a webpage for self-service password resets

This commit is contained in:
Ginger
2026-03-03 13:20:16 -05:00
parent da8833fca4
commit ffa3c53847
24 changed files with 797 additions and 122 deletions
+1 -1
View File
@@ -65,5 +65,5 @@ impl Data {
}
/// Remove a reset token.
pub(super) fn remove_token(&self, token: &str) { self.passwordresettoken_info.del(token); }
pub(super) fn remove_token(&self, token: &str) { self.passwordresettoken_info.remove(token); }
}