From e5d0d464545a99f948243ed8027015aa3729ceb1 Mon Sep 17 00:00:00 2001 From: MishaZhem Date: Fri, 16 Aug 2024 16:26:05 +0300 Subject: [PATCH 01/13] chore: add login page --- .../src/components/app/app.routes.ts | 7 +++ .../src/dashboards/login/login.component.html | 58 +++++++++++++++++++ .../src/dashboards/login/login.component.less | 13 +++++ .../src/dashboards/login/login.component.ts | 35 +++++++++++ 4 files changed, 113 insertions(+) create mode 100644 apps/taiga-lumbermill/src/dashboards/login/login.component.html create mode 100644 apps/taiga-lumbermill/src/dashboards/login/login.component.less create mode 100644 apps/taiga-lumbermill/src/dashboards/login/login.component.ts diff --git a/apps/taiga-lumbermill/src/components/app/app.routes.ts b/apps/taiga-lumbermill/src/components/app/app.routes.ts index df0324a29..7ef764c43 100644 --- a/apps/taiga-lumbermill/src/components/app/app.routes.ts +++ b/apps/taiga-lumbermill/src/components/app/app.routes.ts @@ -48,5 +48,12 @@ export const appRoutes: Route[] = [ (mod) => mod.CommonPageComponent, ), }, + { + path: 'login', + loadComponent: async () => + import('../../dashboards/login/login.component').then( + (mod) => mod.LoginComponent, + ), + }, {path: '**', redirectTo: 'dashboards'}, ]; diff --git a/apps/taiga-lumbermill/src/dashboards/login/login.component.html b/apps/taiga-lumbermill/src/dashboards/login/login.component.html new file mode 100644 index 000000000..aef4b31d8 --- /dev/null +++ b/apps/taiga-lumbermill/src/dashboards/login/login.component.html @@ -0,0 +1,58 @@ +
+
+

+ Cleaning schedule +

+
+
+ + email + + + + + + + password + + + + + + + +
diff --git a/apps/taiga-lumbermill/src/dashboards/login/login.component.less b/apps/taiga-lumbermill/src/dashboards/login/login.component.less new file mode 100644 index 000000000..e4257211e --- /dev/null +++ b/apps/taiga-lumbermill/src/dashboards/login/login.component.less @@ -0,0 +1,13 @@ +.card { + width: max-content; + margin: 3rem auto; +} + +.block-input { + margin-bottom: 0.3rem; + width: 18.5rem; + + @media (max-width: 29rem) { + width: 14rem; + } +} diff --git a/apps/taiga-lumbermill/src/dashboards/login/login.component.ts b/apps/taiga-lumbermill/src/dashboards/login/login.component.ts new file mode 100644 index 000000000..0beca329e --- /dev/null +++ b/apps/taiga-lumbermill/src/dashboards/login/login.component.ts @@ -0,0 +1,35 @@ +import {CommonModule} from '@angular/common'; +import {ChangeDetectionStrategy, Component} from '@angular/core'; +import {FormControl, FormGroup, ReactiveFormsModule, Validators} from '@angular/forms'; +import {TuiAppearance, TuiButton, TuiError, TuiTitle} from '@taiga-ui/core'; +import {TuiFieldErrorPipe} from '@taiga-ui/kit'; +import {TuiCardLarge, TuiHeader} from '@taiga-ui/layout'; +import {TuiInputModule} from '@taiga-ui/legacy'; + +@Component({ + standalone: true, + selector: 'lmb-login', + imports: [ + CommonModule, + ReactiveFormsModule, + TuiAppearance, + TuiButton, + TuiCardLarge, + TuiError, + TuiFieldErrorPipe, + TuiHeader, + TuiInputModule, + TuiTitle, + ], + templateUrl: './login.component.html', + styleUrl: './login.component.less', + changeDetection: ChangeDetectionStrategy.OnPush, +}) +export class LoginComponent { + protected readonly form = new FormGroup({ + email: new FormControl('', [Validators.required, Validators.email]), + password: new FormControl('', [Validators.required]), + }); + + protected onSubmit(): void {} +} From 10bda3f0365c256350b6c3c3d1d77d8b8b015aed Mon Sep 17 00:00:00 2001 From: MishaZhem Date: Mon, 19 Aug 2024 11:00:46 +0300 Subject: [PATCH 02/13] chore: add login page --- .../src/dashboards/login/login.component.html | 2 +- .../src/dashboards/login/login.component.less | 6 +++++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/apps/taiga-lumbermill/src/dashboards/login/login.component.html b/apps/taiga-lumbermill/src/dashboards/login/login.component.html index aef4b31d8..0c9d5c330 100644 --- a/apps/taiga-lumbermill/src/dashboards/login/login.component.html +++ b/apps/taiga-lumbermill/src/dashboards/login/login.component.html @@ -8,7 +8,7 @@ tuiTitle [style.text-align]="'center'" > - Cleaning schedule + Login
Date: Mon, 19 Aug 2024 16:17:24 +0300 Subject: [PATCH 03/13] chore: update login page --- apps/taiga-lumbermill/public/google.svg | 18 ++++++ .../common-page/common-page.component.html | 17 ++++++ .../src/dashboards/login/login.component.html | 57 ++++++++++++++++++- .../src/dashboards/login/login.component.less | 38 +++++++++++++ .../src/dashboards/login/login.component.ts | 15 ++++- 5 files changed, 139 insertions(+), 6 deletions(-) create mode 100644 apps/taiga-lumbermill/public/google.svg diff --git a/apps/taiga-lumbermill/public/google.svg b/apps/taiga-lumbermill/public/google.svg new file mode 100644 index 000000000..7b35ff4c5 --- /dev/null +++ b/apps/taiga-lumbermill/public/google.svg @@ -0,0 +1,18 @@ + + + + + + diff --git a/apps/taiga-lumbermill/src/dashboards/common-page/common-page.component.html b/apps/taiga-lumbermill/src/dashboards/common-page/common-page.component.html index 15ae2ad4b..4da2de067 100644 --- a/apps/taiga-lumbermill/src/dashboards/common-page/common-page.component.html +++ b/apps/taiga-lumbermill/src/dashboards/common-page/common-page.component.html @@ -49,4 +49,21 @@ +
+
+
+

+ Login +

+
+
+
diff --git a/apps/taiga-lumbermill/src/dashboards/login/login.component.html b/apps/taiga-lumbermill/src/dashboards/login/login.component.html index 0c9d5c330..278d9bdcd 100644 --- a/apps/taiga-lumbermill/src/dashboards/login/login.component.html +++ b/apps/taiga-lumbermill/src/dashboards/login/login.component.html @@ -28,7 +28,7 @@ - +
+
+ +

+ Remember me +

+
+ Forgot password? +
+
+
+

+ or +

+
+
+ + + Don't have an account? + Register + diff --git a/apps/taiga-lumbermill/src/dashboards/login/login.component.less b/apps/taiga-lumbermill/src/dashboards/login/login.component.less index d61c3d490..fe2d5c239 100644 --- a/apps/taiga-lumbermill/src/dashboards/login/login.component.less +++ b/apps/taiga-lumbermill/src/dashboards/login/login.component.less @@ -15,3 +15,41 @@ width: 14rem; } } + +.center { + margin-left: auto; + margin-right: auto; + text-align: center; +} + +form { + display: flex; + flex-direction: column; + align-items: center; +} + +.under-password { + display: flex; + justify-content: space-between; + width: 100%; + margin-bottom: 1.5rem; +} + +.or { + display: flex; + margin-top: 0.5rem; + width: 100%; + justify-content: center; + align-items: center; + color: var(--tui-text-secondary); + gap: 0.5rem; +} + +.line { + flex-grow: 1; +} + +.google { + width: 1.8rem; + height: 1.8rem; +} diff --git a/apps/taiga-lumbermill/src/dashboards/login/login.component.ts b/apps/taiga-lumbermill/src/dashboards/login/login.component.ts index 0beca329e..564a78e0e 100644 --- a/apps/taiga-lumbermill/src/dashboards/login/login.component.ts +++ b/apps/taiga-lumbermill/src/dashboards/login/login.component.ts @@ -1,8 +1,14 @@ import {CommonModule} from '@angular/common'; import {ChangeDetectionStrategy, Component} from '@angular/core'; -import {FormControl, FormGroup, ReactiveFormsModule, Validators} from '@angular/forms'; -import {TuiAppearance, TuiButton, TuiError, TuiTitle} from '@taiga-ui/core'; -import {TuiFieldErrorPipe} from '@taiga-ui/kit'; +import { + FormControl, + FormGroup, + FormsModule, + ReactiveFormsModule, + Validators, +} from '@angular/forms'; +import {TuiAppearance, TuiButton, TuiError, TuiLink, TuiTitle} from '@taiga-ui/core'; +import {TuiCheckbox, TuiFieldErrorPipe} from '@taiga-ui/kit'; import {TuiCardLarge, TuiHeader} from '@taiga-ui/layout'; import {TuiInputModule} from '@taiga-ui/legacy'; @@ -11,14 +17,17 @@ import {TuiInputModule} from '@taiga-ui/legacy'; selector: 'lmb-login', imports: [ CommonModule, + FormsModule, ReactiveFormsModule, TuiAppearance, TuiButton, TuiCardLarge, + TuiCheckbox, TuiError, TuiFieldErrorPipe, TuiHeader, TuiInputModule, + TuiLink, TuiTitle, ], templateUrl: './login.component.html', From c66c25a37e8dc21455223e842ed1a24229dfb6fd Mon Sep 17 00:00:00 2001 From: MishaZhem Date: Mon, 19 Aug 2024 17:01:43 +0300 Subject: [PATCH 04/13] chore: change height and width for mobile --- .../src/dashboards/login/login.component.less | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/apps/taiga-lumbermill/src/dashboards/login/login.component.less b/apps/taiga-lumbermill/src/dashboards/login/login.component.less index fe2d5c239..9fb07b4ce 100644 --- a/apps/taiga-lumbermill/src/dashboards/login/login.component.less +++ b/apps/taiga-lumbermill/src/dashboards/login/login.component.less @@ -1,3 +1,7 @@ +:host { + height: calc(100vh - 3rem); +} + .card { top: 50%; bottom: 50%; @@ -9,10 +13,10 @@ .block-input { margin-bottom: 0.3rem; - width: 18.5rem; + width: 20rem; @media (max-width: 29rem) { - width: 14rem; + width: 16rem; } } From 3fa31cd001dde979bebc5562136835cd5a8d8c33 Mon Sep 17 00:00:00 2001 From: MishaZhem Date: Wed, 21 Aug 2024 02:10:34 +0300 Subject: [PATCH 05/13] chore: update login --- .../src/dashboards/login/login.component.html | 4 +++- .../src/dashboards/login/login.component.ts | 11 ++++++++++- 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/apps/taiga-lumbermill/src/dashboards/login/login.component.html b/apps/taiga-lumbermill/src/dashboards/login/login.component.html index 278d9bdcd..9eea97497 100644 --- a/apps/taiga-lumbermill/src/dashboards/login/login.component.html +++ b/apps/taiga-lumbermill/src/dashboards/login/login.component.html @@ -29,6 +29,7 @@ formControlName="email" [error]="[] | tuiFieldError | async" [style.margin-bottom]="'0.8rem'" + [style.margin-right]="'auto'" />
Don't have an account? - Register + Sign up
diff --git a/apps/taiga-lumbermill/src/dashboards/login/login.component.ts b/apps/taiga-lumbermill/src/dashboards/login/login.component.ts index 564a78e0e..53b457350 100644 --- a/apps/taiga-lumbermill/src/dashboards/login/login.component.ts +++ b/apps/taiga-lumbermill/src/dashboards/login/login.component.ts @@ -8,7 +8,7 @@ import { Validators, } from '@angular/forms'; import {TuiAppearance, TuiButton, TuiError, TuiLink, TuiTitle} from '@taiga-ui/core'; -import {TuiCheckbox, TuiFieldErrorPipe} from '@taiga-ui/kit'; +import {TUI_VALIDATION_ERRORS, TuiCheckbox, TuiFieldErrorPipe} from '@taiga-ui/kit'; import {TuiCardLarge, TuiHeader} from '@taiga-ui/layout'; import {TuiInputModule} from '@taiga-ui/legacy'; @@ -33,6 +33,15 @@ import {TuiInputModule} from '@taiga-ui/legacy'; templateUrl: './login.component.html', styleUrl: './login.component.less', changeDetection: ChangeDetectionStrategy.OnPush, + providers: [ + { + provide: TUI_VALIDATION_ERRORS, + useValue: { + required: "Value can't be empty", + email: 'Value should be email', + }, + }, + ], }) export class LoginComponent { protected readonly form = new FormGroup({ From e1d1048439830f0c244c15f9c0d829d26853f4f7 Mon Sep 17 00:00:00 2001 From: MishaZhem Date: Wed, 21 Aug 2024 10:53:00 +0300 Subject: [PATCH 06/13] chore: add github --- apps/taiga-lumbermill/public/github-mark.svg | 8 ++++++++ .../src/dashboards/login/login.component.html | 14 ++++++++++++++ 2 files changed, 22 insertions(+) create mode 100644 apps/taiga-lumbermill/public/github-mark.svg diff --git a/apps/taiga-lumbermill/public/github-mark.svg b/apps/taiga-lumbermill/public/github-mark.svg new file mode 100644 index 000000000..4216cdd04 --- /dev/null +++ b/apps/taiga-lumbermill/public/github-mark.svg @@ -0,0 +1,8 @@ + + + diff --git a/apps/taiga-lumbermill/src/dashboards/login/login.component.html b/apps/taiga-lumbermill/src/dashboards/login/login.component.html index 9eea97497..3f27d62d3 100644 --- a/apps/taiga-lumbermill/src/dashboards/login/login.component.html +++ b/apps/taiga-lumbermill/src/dashboards/login/login.component.html @@ -99,6 +99,20 @@ /> Sign in with google + Date: Wed, 21 Aug 2024 12:56:22 +0300 Subject: [PATCH 07/13] chore: update login --- apps/taiga-lumbermill/public/apple.svg | 45 +++++++++++++ .../src/dashboards/login/login.component.html | 64 +++++++++++-------- .../src/dashboards/login/login.component.less | 11 +++- 3 files changed, 91 insertions(+), 29 deletions(-) create mode 100644 apps/taiga-lumbermill/public/apple.svg diff --git a/apps/taiga-lumbermill/public/apple.svg b/apps/taiga-lumbermill/public/apple.svg new file mode 100644 index 000000000..24659ba44 --- /dev/null +++ b/apps/taiga-lumbermill/public/apple.svg @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/apps/taiga-lumbermill/src/dashboards/login/login.component.html b/apps/taiga-lumbermill/src/dashboards/login/login.component.html index 3f27d62d3..38420486c 100644 --- a/apps/taiga-lumbermill/src/dashboards/login/login.component.html +++ b/apps/taiga-lumbermill/src/dashboards/login/login.component.html @@ -85,34 +85,42 @@


- - +

Login with

+
+ + + +
Date: Wed, 21 Aug 2024 12:59:30 +0300 Subject: [PATCH 08/13] chore: add remeber me to form --- apps/taiga-lumbermill/src/dashboards/login/login.component.html | 2 +- apps/taiga-lumbermill/src/dashboards/login/login.component.ts | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/taiga-lumbermill/src/dashboards/login/login.component.html b/apps/taiga-lumbermill/src/dashboards/login/login.component.html index 38420486c..4fed807da 100644 --- a/apps/taiga-lumbermill/src/dashboards/login/login.component.html +++ b/apps/taiga-lumbermill/src/dashboards/login/login.component.html @@ -54,9 +54,9 @@ >

Date: Wed, 21 Aug 2024 13:07:17 +0300 Subject: [PATCH 09/13] chore: add password and label --- .../src/dashboards/login/login.component.html | 17 +++++++---------- .../src/dashboards/login/login.component.ts | 13 +++++++++++-- 2 files changed, 18 insertions(+), 12 deletions(-) diff --git a/apps/taiga-lumbermill/src/dashboards/login/login.component.html b/apps/taiga-lumbermill/src/dashboards/login/login.component.html index 4fed807da..4fdd6f5aa 100644 --- a/apps/taiga-lumbermill/src/dashboards/login/login.component.html +++ b/apps/taiga-lumbermill/src/dashboards/login/login.component.html @@ -32,7 +32,7 @@ [style.margin-right]="'auto'" /> - password - +

diff --git a/apps/taiga-lumbermill/src/dashboards/login/login.component.ts b/apps/taiga-lumbermill/src/dashboards/login/login.component.ts index ade92bc00..b9bc3e65f 100644 --- a/apps/taiga-lumbermill/src/dashboards/login/login.component.ts +++ b/apps/taiga-lumbermill/src/dashboards/login/login.component.ts @@ -7,10 +7,17 @@ import { ReactiveFormsModule, Validators, } from '@angular/forms'; -import {TuiAppearance, TuiButton, TuiError, TuiLink, TuiTitle} from '@taiga-ui/core'; +import { + TuiAppearance, + TuiButton, + TuiError, + TuiLabel, + TuiLink, + TuiTitle, +} from '@taiga-ui/core'; import {TUI_VALIDATION_ERRORS, TuiCheckbox, TuiFieldErrorPipe} from '@taiga-ui/kit'; import {TuiCardLarge, TuiHeader} from '@taiga-ui/layout'; -import {TuiInputModule} from '@taiga-ui/legacy'; +import {TuiInputModule, TuiInputPasswordModule} from '@taiga-ui/legacy'; @Component({ standalone: true, @@ -27,6 +34,8 @@ import {TuiInputModule} from '@taiga-ui/legacy'; TuiFieldErrorPipe, TuiHeader, TuiInputModule, + TuiInputPasswordModule, + TuiLabel, TuiLink, TuiTitle, ], From 22cb68b0c5ee3b12b686e0c5739c2020fd95ef1e Mon Sep 17 00:00:00 2001 From: MishaZhem Date: Thu, 22 Aug 2024 14:10:12 +0300 Subject: [PATCH 10/13] chore: update login --- .../src/dashboards/login/login.component.html | 21 ++++++++---- .../src/dashboards/login/login.component.less | 8 +++++ .../src/dashboards/login/login.component.ts | 34 +++++++++++++++++-- 3 files changed, 53 insertions(+), 10 deletions(-) diff --git a/apps/taiga-lumbermill/src/dashboards/login/login.component.html b/apps/taiga-lumbermill/src/dashboards/login/login.component.html index 4fdd6f5aa..d75119b73 100644 --- a/apps/taiga-lumbermill/src/dashboards/login/login.component.html +++ b/apps/taiga-lumbermill/src/dashboards/login/login.component.html @@ -17,9 +17,9 @@ > email @@ -34,9 +34,9 @@ password @@ -65,13 +65,20 @@ Forgot password? - + +

(); + + protected readonly submitLoader = toSignal( + this.submit$.pipe( + switchMap(() => + timer(4000).pipe( + map(() => this.goMain()), + startWith(true), + ), + ), + ), + {initialValue: false}, + ); + + protected goMain(): boolean { + this.router.navigate(['']); + + return false; + } + + protected onSubmit(): void { + this.submit$.next(); + } } From 28e0ade03c8291f7b0649f201baf1d29bfa9cee4 Mon Sep 17 00:00:00 2001 From: MishaZhem Date: Fri, 23 Aug 2024 13:22:21 +0300 Subject: [PATCH 11/13] chore: update login --- .../src/dashboards/login/login.component.html | 20 +++++++++---------- .../src/dashboards/login/login.component.less | 3 ++- .../src/dashboards/login/login.component.ts | 20 +++++++++---------- 3 files changed, 21 insertions(+), 22 deletions(-) diff --git a/apps/taiga-lumbermill/src/dashboards/login/login.component.html b/apps/taiga-lumbermill/src/dashboards/login/login.component.html index d75119b73..feba235e2 100644 --- a/apps/taiga-lumbermill/src/dashboards/login/login.component.html +++ b/apps/taiga-lumbermill/src/dashboards/login/login.component.html @@ -19,7 +19,6 @@ formControlName="email" type="email" class="block-input" - [readOnly]="submitLoader()" > email @@ -36,7 +35,6 @@ formControlName="password" type="password" class="block-input" - [readOnly]="submitLoader()" > password @@ -94,34 +92,34 @@

diff --git a/apps/taiga-lumbermill/src/dashboards/login/login.component.less b/apps/taiga-lumbermill/src/dashboards/login/login.component.less index 161d08910..2ca85d50f 100644 --- a/apps/taiga-lumbermill/src/dashboards/login/login.component.less +++ b/apps/taiga-lumbermill/src/dashboards/login/login.component.less @@ -53,7 +53,8 @@ form { flex-grow: 1; } -.iconLogin { +.icon-login { + transition: opacity 0.3s; width: 1.8rem; height: 1.8rem; diff --git a/apps/taiga-lumbermill/src/dashboards/login/login.component.ts b/apps/taiga-lumbermill/src/dashboards/login/login.component.ts index 151ab3322..1293f72d5 100644 --- a/apps/taiga-lumbermill/src/dashboards/login/login.component.ts +++ b/apps/taiga-lumbermill/src/dashboards/login/login.component.ts @@ -1,13 +1,7 @@ import {CommonModule} from '@angular/common'; import {ChangeDetectionStrategy, Component, inject} from '@angular/core'; import {toSignal} from '@angular/core/rxjs-interop'; -import { - FormControl, - FormGroup, - FormsModule, - ReactiveFormsModule, - Validators, -} from '@angular/forms'; +import {FormControl, FormGroup, ReactiveFormsModule, Validators} from '@angular/forms'; import {Router} from '@angular/router'; import { TuiAppearance, @@ -21,14 +15,13 @@ import { import {TUI_VALIDATION_ERRORS, TuiCheckbox, TuiFieldErrorPipe} from '@taiga-ui/kit'; import {TuiCardLarge, TuiHeader} from '@taiga-ui/layout'; import {TuiInputModule, TuiInputPasswordModule} from '@taiga-ui/legacy'; -import {map, startWith, Subject, switchMap, timer} from 'rxjs'; +import {map, of, startWith, Subject, switchMap, timer} from 'rxjs'; @Component({ standalone: true, selector: 'lmb-login', imports: [ CommonModule, - FormsModule, ReactiveFormsModule, TuiAppearance, TuiButton, @@ -53,6 +46,8 @@ import {map, startWith, Subject, switchMap, timer} from 'rxjs'; useValue: { required: "Value can't be empty", email: 'Invalid email', + minlength: ({requiredLength}: {requiredLength: string}) => + of(`Minimum length — ${requiredLength}`), }, }, ], @@ -61,7 +56,7 @@ export class LoginComponent { private readonly router = inject(Router); protected readonly form = new FormGroup({ email: new FormControl('', [Validators.required, Validators.email]), - password: new FormControl('', [Validators.required]), + password: new FormControl('', [Validators.required, Validators.minLength(5)]), rememberMe: new FormControl(false), }); @@ -86,6 +81,11 @@ export class LoginComponent { } protected onSubmit(): void { + if (!this.form.valid) { + return; + } + + this.form.disable(); this.submit$.next(); } } From 29aed25ded46ef9540455259310e7b50b30a7339 Mon Sep 17 00:00:00 2001 From: MishaZhem Date: Fri, 23 Aug 2024 20:57:48 +0300 Subject: [PATCH 12/13] chore: remove extra code --- .../common-page/common-page.component.html | 2 +- .../src/dashboards/login/login.component.html | 15 ++++----------- .../src/dashboards/login/login.component.less | 5 +++++ 3 files changed, 10 insertions(+), 12 deletions(-) diff --git a/apps/taiga-lumbermill/src/dashboards/common-page/common-page.component.html b/apps/taiga-lumbermill/src/dashboards/common-page/common-page.component.html index 4da2de067..9045d2595 100644 --- a/apps/taiga-lumbermill/src/dashboards/common-page/common-page.component.html +++ b/apps/taiga-lumbermill/src/dashboards/common-page/common-page.component.html @@ -61,7 +61,7 @@ tuiTitle [style.text-align]="'center'" > - Login + Login in diff --git a/apps/taiga-lumbermill/src/dashboards/login/login.component.html b/apps/taiga-lumbermill/src/dashboards/login/login.component.html index feba235e2..554e8edb1 100644 --- a/apps/taiga-lumbermill/src/dashboards/login/login.component.html +++ b/apps/taiga-lumbermill/src/dashboards/login/login.component.html @@ -26,9 +26,8 @@
Forgot password?
@@ -74,7 +67,7 @@ tuiButton [style.width]="'100%'" > - Login + Login in
diff --git a/apps/taiga-lumbermill/src/dashboards/login/login.component.less b/apps/taiga-lumbermill/src/dashboards/login/login.component.less index 2ca85d50f..f51c25931 100644 --- a/apps/taiga-lumbermill/src/dashboards/login/login.component.less +++ b/apps/taiga-lumbermill/src/dashboards/login/login.component.less @@ -75,3 +75,8 @@ form { .icons-title { font-weight: 700; } + +.error { + margin-right: auto; + margin-bottom: 0.8rem; +} From b89518e599367feaad2ffb91cc477dd6f5f9094c Mon Sep 17 00:00:00 2001 From: MishaZhem Date: Mon, 26 Aug 2024 11:58:18 +0300 Subject: [PATCH 13/13] chore: change headings --- .../src/dashboards/common-page/common-page.component.html | 2 +- .../src/dashboards/login/login.component.html | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/taiga-lumbermill/src/dashboards/common-page/common-page.component.html b/apps/taiga-lumbermill/src/dashboards/common-page/common-page.component.html index 93fef317f..2961d5f70 100644 --- a/apps/taiga-lumbermill/src/dashboards/common-page/common-page.component.html +++ b/apps/taiga-lumbermill/src/dashboards/common-page/common-page.component.html @@ -61,7 +61,7 @@ tuiTitle [style.text-align]="'center'" > - Login in + Log in
diff --git a/apps/taiga-lumbermill/src/dashboards/login/login.component.html b/apps/taiga-lumbermill/src/dashboards/login/login.component.html index 554e8edb1..8833d1fde 100644 --- a/apps/taiga-lumbermill/src/dashboards/login/login.component.html +++ b/apps/taiga-lumbermill/src/dashboards/login/login.component.html @@ -8,7 +8,7 @@ tuiTitle [style.text-align]="'center'" > - Login + Log in
- Login in + Log in