diff --git a/src/app/modules/auth/confirmation-required/confirmation-required.component.html b/src/app/modules/auth/confirmation-required/confirmation-required.component.html index 6f14913..76d49ce 100644 --- a/src/app/modules/auth/confirmation-required/confirmation-required.component.html +++ b/src/app/modules/auth/confirmation-required/confirmation-required.component.html @@ -1,8 +1,6 @@ -
+
@@ -31,90 +29,4 @@
-
diff --git a/src/app/modules/auth/forgot-password/forgot-password.component.html b/src/app/modules/auth/forgot-password/forgot-password.component.html index 8432607..e7a35ea 100644 --- a/src/app/modules/auth/forgot-password/forgot-password.component.html +++ b/src/app/modules/auth/forgot-password/forgot-password.component.html @@ -1,8 +1,6 @@ -
+
@@ -39,13 +37,11 @@ Email address Email address is required - + Please enter a valid email address @@ -55,12 +51,12 @@ class="fuse-mat-button-large w-full mt-3" mat-flat-button [color]="'primary'" - [disabled]="forgotPasswordForm?.disabled" + [disabled]="forgotPasswordForm.disabled" (click)="sendResetLink()" > - Send reset link + Send reset link @@ -78,90 +74,4 @@
-
diff --git a/src/app/modules/auth/reset-password/reset-password.component.html b/src/app/modules/auth/reset-password/reset-password.component.html index f8564f1..65ec3fb 100644 --- a/src/app/modules/auth/reset-password/reset-password.component.html +++ b/src/app/modules/auth/reset-password/reset-password.component.html @@ -1,8 +1,6 @@ -
+
@@ -103,14 +101,14 @@ Password confirmation is required Passwords must match @@ -122,14 +120,12 @@ class="fuse-mat-button-large w-full mt-3" mat-flat-button [color]="'primary'" - [disabled]="resetPasswordForm?.disabled" + [disabled]="resetPasswordForm.disabled" (click)="resetPassword()" > - - Reset your password - + Reset your password @@ -147,90 +143,4 @@
-
diff --git a/src/app/modules/auth/sign-in/sign-in.component.html b/src/app/modules/auth/sign-in/sign-in.component.html index 36812c8..8173e3a 100644 --- a/src/app/modules/auth/sign-in/sign-in.component.html +++ b/src/app/modules/auth/sign-in/sign-in.component.html @@ -1,8 +1,6 @@ -
+
@@ -12,16 +10,16 @@
- Sign in + Login Page
-
+ - Email address + 로그인 아이디 - - Email address is required + + 아이디를 입력하세요. - + Please enter a valid email address - Password + 비밀번호 - Password is required + 비밀번호를 입력하세요 + + + + 보안코드* + + + 보안코드를 입력하세요. + + + 유효한 보안코드가 아닙니다. + -
+ -
+ -
+
-
diff --git a/src/app/modules/auth/sign-in/sign-in.component.ts b/src/app/modules/auth/sign-in/sign-in.component.ts index b84ddd9..9e6ad79 100644 --- a/src/app/modules/auth/sign-in/sign-in.component.ts +++ b/src/app/modules/auth/sign-in/sign-in.component.ts @@ -46,7 +46,7 @@ export class AuthSignInComponent implements OnInit { [Validators.required, Validators.email], ], password: ['admin', Validators.required], - rememberMe: [''], + recaptcha: ['', Validators.required], }); } diff --git a/src/app/modules/auth/sign-up/sign-up.component.html b/src/app/modules/auth/sign-up/sign-up.component.html index 4eaf1e2..b5163eb 100644 --- a/src/app/modules/auth/sign-up/sign-up.component.html +++ b/src/app/modules/auth/sign-up/sign-up.component.html @@ -1,8 +1,6 @@ -
+
@@ -18,7 +16,7 @@
Already have an account?
Sign in
@@ -41,7 +39,7 @@ Full name - + Full name is required @@ -50,10 +48,10 @@ Email address - + Email address is required - + Please enter a valid email address @@ -121,12 +119,12 @@ class="fuse-mat-button-large w-full mt-6" mat-flat-button [color]="'primary'" - [disabled]="signUpForm?.disabled" + [disabled]="signUpForm.disabled" (click)="signUp()" > - Create your free account + Create your free account @@ -134,90 +132,4 @@
-