add new student info route and related components, update auth guard implementation and signup success redirect
```
This commit is contained in:
louiscklaw
2025-05-14 15:40:59 +08:00
parent 1938e95948
commit efc2d31f7c
6 changed files with 98 additions and 21 deletions

View File

@@ -1,9 +1,13 @@
const Paths = {
AuthHome: `/auth/Home`,
AuthHome: `/auth/home`,
AuthLogin: `/auth/login`,
AuthSignUp: `/auth/signup`,
SignUpSuccess: `/auth/sign_up_success`,
AuthorizedTest: `/auth/authorized_test`,
//
StudentInfo: `/auth/student_info/:id`,
GetStudentInfoLink: (id: string) => `/auth/student_info/${id}`,
//
};
export { Paths };