Forgot password

This commit is contained in:
2024-11-26 17:42:46 +00:00
parent 964f3bfb30
commit 1ed1ad09af
6 changed files with 193 additions and 14 deletions

View File

@@ -28,4 +28,6 @@ public interface IAccountManagement
public Task<FormResult> RegisterAsync(string email, string password);
public Task<bool> CheckAuthenticatedAsync();
Task<HttpResponseMessage> RequestPasswordReset(string email);
Task<FormResult> ChangePassword(string email, string resetCode, string newPassword);
}