File tree Expand file tree Collapse file tree 3 files changed +1
-8
lines changed
viewer/packages/lowcoder/src Expand file tree Collapse file tree 3 files changed +1
-8
lines changed Original file line number Diff line number Diff line change 1
1
import {
2
2
AUTH_BIND_URL ,
3
- AUTH_FORGOT_PASSWORD_URL ,
4
3
AUTH_LOGIN_URL ,
5
4
AUTH_REGISTER_URL ,
6
- AUTH_RESET_PASSWORD_URL ,
7
5
OAUTH_REDIRECT ,
8
6
ORG_AUTH_LOGIN_URL ,
9
7
ORG_AUTH_REGISTER_URL ,
@@ -90,8 +88,6 @@ export const AuthRoutes: Array<{ path: string; component: React.ComponentType<an
90
88
{ path : AUTH_LOGIN_URL , component : Login } ,
91
89
{ path : AUTH_BIND_URL , component : ThirdPartyBindCard } ,
92
90
{ path : AUTH_REGISTER_URL , component : UserRegister } ,
93
- { path : AUTH_FORGOT_PASSWORD_URL , component : ForgotPassword } ,
94
- { path : AUTH_RESET_PASSWORD_URL , component : ResetPassword } ,
95
91
{ path : OAUTH_REDIRECT , component : AuthRedirect } ,
96
92
{ path : ORG_AUTH_LOGIN_URL , component : Login } ,
97
93
{ path : ORG_AUTH_REGISTER_URL , component : UserRegister } ,
Original file line number Diff line number Diff line change @@ -31,8 +31,6 @@ export const APP_EDITOR_URL = `${ALL_APPLICATIONS_URL}/:applicationId/:viewMode/
31
31
export const AUTH_BIND_URL = `${ USER_AUTH_URL } /bind` ;
32
32
export const AUTH_LOGIN_URL = `${ USER_AUTH_URL } /login` ;
33
33
export const AUTH_REGISTER_URL = `${ USER_AUTH_URL } /register` ;
34
- export const AUTH_FORGOT_PASSWORD_URL = `${ USER_AUTH_URL } /forgot-password` ;
35
- export const AUTH_RESET_PASSWORD_URL = `${ USER_AUTH_URL } /lost-password` ;
36
34
export const QR_CODE_OAUTH_URL = `${ USER_AUTH_URL } /oauth/qrcode` ;
37
35
export const OAUTH_REDIRECT = `${ USER_AUTH_URL } /oauth/redirect` ;
38
36
export const CAS_AUTH_REDIRECT = `${ USER_AUTH_URL } /cas/redirect` ;
Original file line number Diff line number Diff line change @@ -15,10 +15,9 @@ import { UserConnectionSource } from "@lowcoder-ee/constants/userConstants";
15
15
import { trans } from "i18n" ;
16
16
import { AuthContext , useAuthSubmit } from "pages/userAuth/authUtils" ;
17
17
import { ThirdPartyAuth } from "pages/userAuth/thirdParty/thirdPartyAuth" ;
18
- import { AUTH_FORGOT_PASSWORD_URL , AUTH_REGISTER_URL , ORG_AUTH_REGISTER_URL } from "constants/routesURL" ;
18
+ import { AUTH_REGISTER_URL , ORG_AUTH_REGISTER_URL } from "constants/routesURL" ;
19
19
import { Link , useLocation , useParams } from "react-router-dom" ;
20
20
import { Divider } from "antd" ;
21
- import Flex from "antd/es/flex" ;
22
21
23
22
const AccountLoginWrapper = styled ( FormWrapperMobile ) `
24
23
display: flex;
You can’t perform that action at this time.
0 commit comments