12 changed files with 176 additions and 20 deletions
@ -0,0 +1,40 @@ |
|||
<!-- |
|||
|
|||
Copyright © 2016-2024 The Thingsboard Authors |
|||
|
|||
Licensed under the Apache License, Version 2.0 (the "License"); |
|||
you may not use this file except in compliance with the License. |
|||
You may obtain a copy of the License at |
|||
|
|||
http://www.apache.org/licenses/LICENSE-2.0 |
|||
|
|||
Unless required by applicable law or agreed to in writing, software |
|||
distributed under the License is distributed on an "AS IS" BASIS, |
|||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
|||
See the License for the specific language governing permissions and |
|||
limitations under the License. |
|||
|
|||
--> |
|||
<div class="tb-expired-link-content mat-app-background tb-dark tb-flex row center align-center" |
|||
style="width: 100%;"> |
|||
<mat-card appearance="raised" class="tb-expired-link-card"> |
|||
<mat-card-header style="justify-content: center"> |
|||
<mat-card-title> |
|||
<span class="mat-headline-5">{{ title | translate }}</span> |
|||
</mat-card-title> |
|||
</mat-card-header> |
|||
<mat-progress-bar color="warn" mode="indeterminate" *ngIf="isLoading$ | async"> |
|||
</mat-progress-bar> |
|||
<span style="height: 4px;" *ngIf="!(isLoading$ | async)"></span> |
|||
<mat-card-content style="padding: 24px 16px"> |
|||
<div>{{ message | translate }}</div> |
|||
</mat-card-content> |
|||
<mat-card-actions class="tb-flex row center"> |
|||
<button mat-raised-button color="accent" |
|||
[disabled]="(isLoading$ | async)" |
|||
(click)="navigateToLoginPage()"> |
|||
{{ 'login.login' | translate }} |
|||
</button> |
|||
</mat-card-actions> |
|||
</mat-card> |
|||
</div> |
|||
@ -0,0 +1,32 @@ |
|||
/** |
|||
* Copyright © 2016-2024 The Thingsboard Authors |
|||
* |
|||
* Licensed under the Apache License, Version 2.0 (the "License"); |
|||
* you may not use this file except in compliance with the License. |
|||
* You may obtain a copy of the License at |
|||
* |
|||
* http://www.apache.org/licenses/LICENSE-2.0 |
|||
* |
|||
* Unless required by applicable law or agreed to in writing, software |
|||
* distributed under the License is distributed on an "AS IS" BASIS, |
|||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
|||
* See the License for the specific language governing permissions and |
|||
* limitations under the License. |
|||
*/ |
|||
@import '../../../../../scss/constants'; |
|||
|
|||
:host { |
|||
display: flex; |
|||
flex: 1 1 0; |
|||
.tb-expired-link-content { |
|||
background-color: #eee; |
|||
.tb-expired-link-card { |
|||
letter-spacing: 0.15px; |
|||
line-height: 24px; |
|||
padding: 24px; |
|||
@media #{$mat-gt-xs} { |
|||
width: 486px !important; |
|||
} |
|||
} |
|||
} |
|||
} |
|||
@ -0,0 +1,47 @@ |
|||
///
|
|||
/// Copyright © 2016-2024 The Thingsboard Authors
|
|||
///
|
|||
/// Licensed under the Apache License, Version 2.0 (the "License");
|
|||
/// you may not use this file except in compliance with the License.
|
|||
/// You may obtain a copy of the License at
|
|||
///
|
|||
/// http://www.apache.org/licenses/LICENSE-2.0
|
|||
///
|
|||
/// Unless required by applicable law or agreed to in writing, software
|
|||
/// distributed under the License is distributed on an "AS IS" BASIS,
|
|||
/// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|||
/// See the License for the specific language governing permissions and
|
|||
/// limitations under the License.
|
|||
///
|
|||
|
|||
import { Component } from '@angular/core'; |
|||
import { Store } from '@ngrx/store'; |
|||
import { AppState } from '@core/core.state'; |
|||
import { PageComponent } from '@shared/components/page.component'; |
|||
import { ActivatedRoute, Router } from '@angular/router'; |
|||
|
|||
@Component({ |
|||
selector: 'tb-link-expired', |
|||
templateUrl: './link-expired.component.html', |
|||
styleUrls: ['./link-expired.component.scss'] |
|||
}) |
|||
export class LinkExpiredComponent extends PageComponent { |
|||
|
|||
isPasswordLinkExpired: boolean; |
|||
title: string; |
|||
message: string; |
|||
|
|||
constructor(protected store: Store<AppState>, |
|||
private route: ActivatedRoute, |
|||
private router: Router) { |
|||
super(store); |
|||
this.isPasswordLinkExpired = this.route.snapshot.data.passwordLinkExpired; |
|||
this.title = this.isPasswordLinkExpired ? 'login.reset-password-link-expired' : 'login.activation-link-expired'; |
|||
this.message = this.isPasswordLinkExpired ? 'login.reset-password-link-expired-message' : |
|||
'login.activation-link-expired-message'; |
|||
} |
|||
|
|||
navigateToLoginPage() { |
|||
this.router.navigateByUrl('login'); |
|||
} |
|||
} |
|||
Loading…
Reference in new issue