add: profile edit page

This commit is contained in:
Mahyar Khanbolooki
2025-07-17 17:15:17 +03:30
parent ac5eb68444
commit 77505d5098
11 changed files with 594 additions and 234 deletions
+8
View File
@@ -8,4 +8,12 @@ export enum AUTH_PAGE_ELEMENT {
INPUT_PASSWORD_REPEAT = "passwordRepeat",
INPUT_OTP = "opt",
INPUT_PHONE = "phone"
}
export enum PORFILE_EDIT_PAGE_ELEMENT {
INPUT_FULLNAME = 'fullname',
INPUT_EMAIL = 'email',
INPUT_PHONE = 'phone',
INPUT_DOB = 'dateOfBirth',
INPUT_GENDER = 'gender'
}
+2 -1
View File
@@ -1,5 +1,6 @@
import { AUTH_STEP } from "./authStep";
import { AUTH_PAGE_ELEMENT } from "./elementIds";
import { AUTH_PAGE_ELEMENT, PORFILE_EDIT_PAGE_ELEMENT } from "./elementIds";
export { AUTH_STEP };
export { AUTH_PAGE_ELEMENT };
export { PORFILE_EDIT_PAGE_ELEMENT };