Add forgot username/password buttons (sends email right now only, everything else needs to be finished on the server rn)

This commit is contained in:
2026-01-23 19:54:59 -07:00
parent 563f4fa711
commit e361ab34de
7 changed files with 3233 additions and 74 deletions

View File

@@ -19,4 +19,6 @@ public class Endpoints
public static readonly string ACCOUNT_LOGIN_ENDPOINT = ACCOUNT_ENDPOINT + "/login";
public static readonly string ACCOUNT_REGISTER_ENDPOINT = ACCOUNT_ENDPOINT + "/register";
public static readonly string ACCOUNT_SAVE_ENDPOINT = ACCOUNT_ENDPOINT + "/save";
public static readonly string ACCOUNT_FORGOT_USERNAME_ENDPOINT = BASE_URL + "/account/forgot-username";
public static readonly string ACCOUNT_FORGOT_PASSWORD_ENDPOINT = BASE_URL + "/account/forgot-password";
}