feat: add email sign up

This commit is contained in:
2025-12-11 22:32:23 +07:00
parent 8e88f6a44c
commit 7afdf84ef1
8 changed files with 192 additions and 27 deletions

2
src/utils/index.ts Normal file
View File

@@ -0,0 +1,2 @@
export * from "./ionic-helper";
export * from "./pattern";

View File

@@ -0,0 +1 @@
export type PageInstance = InstanceType<typeof import("@ionic/vue").IonPage>;

1
src/utils/pattern.ts Normal file
View File

@@ -0,0 +1 @@
export const emailPattern = /^[^\s@]+@[^\s@][^\s.@]*\.[^\s@]+$/;