diff --git a/web/app/forgot-password/page.tsx b/web/app/forgot-password/page.tsx
index ccbdcbdf0c..ed3d0d529d 100644
--- a/web/app/forgot-password/page.tsx
+++ b/web/app/forgot-password/page.tsx
@@ -1,9 +1,8 @@
'use client'
import React from 'react'
-import classNames from 'classnames'
+import cn from 'classnames'
import { useSearchParams } from 'next/navigation'
import Header from '../signin/_header'
-import style from '../signin/page.module.css'
import ForgotPasswordForm from './ForgotPasswordForm'
import ChangePasswordForm from '@/app/forgot-password/ChangePasswordForm'
@@ -12,20 +11,8 @@ const ForgotPassword = () => {
const token = searchParams.get('token')
return (
-
-
+
+
{token ?
:
}
diff --git a/web/app/init/page.tsx b/web/app/init/page.tsx
index 5b3e9f4141..c3d439fcb1 100644
--- a/web/app/init/page.tsx
+++ b/web/app/init/page.tsx
@@ -1,24 +1,11 @@
import React from 'react'
-import style from '../signin/page.module.css'
import InitPasswordPopup from './InitPasswordPopup'
import cn from '@/utils/classnames'
const Install = () => {
return (
-
-
+
+
diff --git a/web/app/install/page.tsx b/web/app/install/page.tsx
index f41c63ff37..f63fdf8443 100644
--- a/web/app/install/page.tsx
+++ b/web/app/install/page.tsx
@@ -1,25 +1,12 @@
import React from 'react'
import Header from '../signin/_header'
-import style from '../signin/page.module.css'
import InstallForm from './installForm'
-import classNames from '@/utils/classnames'
+import cn from '@/utils/classnames'
const Install = () => {
return (
-
-
+
+
diff --git a/web/app/reset-password/layout.tsx b/web/app/reset-password/layout.tsx
index 58ac3a642e..3d053e4d34 100644
--- a/web/app/reset-password/layout.tsx
+++ b/web/app/reset-password/layout.tsx
@@ -1,24 +1,11 @@
import Header from '../signin/_header'
-import style from '../signin/page.module.css'
import cn from '@/utils/classnames'
export default async function SignInLayout({ children }: any) {
return <>
-
-
+
+
-
-
+
+
{t('login.backToLogin')}
diff --git a/web/app/signin/assets/background.png b/web/app/signin/assets/background.png
deleted file mode 100644
index a410f7e074..0000000000
Binary files a/web/app/signin/assets/background.png and /dev/null differ
diff --git a/web/app/signin/layout.tsx b/web/app/signin/layout.tsx
index fbdd4c66e7..1af4082c73 100644
--- a/web/app/signin/layout.tsx
+++ b/web/app/signin/layout.tsx
@@ -1,32 +1,13 @@
import Header from './_header'
-import style from './page.module.css'
import cn from '@/utils/classnames'
export default async function SignInLayout({ children }: any) {
return <>
-
-
+
+
-
+
{children}
diff --git a/web/app/signin/page.module.css b/web/app/signin/page.module.css
index de80af772a..5d12925980 100644
--- a/web/app/signin/page.module.css
+++ b/web/app/signin/page.module.css
@@ -4,9 +4,4 @@
.googleIcon {
background: center/contain url('./assets/google.svg');
-}
-
-.background {
- background-image: url('./assets/background.png');
- background-size: cover;
}
\ No newline at end of file