-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Add full stop to sign in text and update claim link text
- Loading branch information
Daniel Palafox
committed
Mar 13, 2024
1 parent
285e7f2
commit 6f34682
Showing
21 changed files
with
1,357 additions
and
1,363 deletions.
There are no files selected for viewing
160 changes: 80 additions & 80 deletions
160
src/app/cdk/my-orcid-alerts/my-orcid-alerts.component.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,80 +1,80 @@ | ||
<ng-container *ngIf="!signInUpdatesV1Togglz"> | ||
<mat-toolbar> | ||
<mat-toolbar-row> | ||
<div role="alert"> | ||
<p class="mat-body-2"> | ||
<ng-container | ||
i18n="@@myOrcidAlerts.invalidVerifyUrl" | ||
*ngIf="invalidVerifyUrl" | ||
> | ||
Your email couldn't be verified, please check the link you used to | ||
verify it. | ||
</ng-container> | ||
<ng-container | ||
i18n="@@myOrcidAlerts.emailVerified" | ||
*ngIf="emailVerified" | ||
> | ||
Thank you for verifying your email | ||
</ng-container> | ||
</p> | ||
</div> | ||
</mat-toolbar-row> | ||
</mat-toolbar> | ||
</ng-container> | ||
<ng-container *ngIf="signInUpdatesV1Togglz"> | ||
<ng-container *ngIf="emailVerified || invalidVerifyUrl"> | ||
<div | ||
[ngClass]="{ | ||
verification: emailVerified, | ||
invalid: invalidVerifyUrl | ||
}" | ||
> | ||
<div> | ||
<mat-icon class="large-material-icon material-symbols-outlined"> | ||
<ng-container *ngIf="emailVerified">check_circle</ng-container> | ||
<ng-container *ngIf="invalidVerifyUrl">warning</ng-container> | ||
</mat-icon> | ||
</div> | ||
<div class="content"> | ||
<div> | ||
<b i18n="@@ngOrcid.signin.almostDone"> Almost done! </b> | ||
</div> | ||
<div> | ||
<ng-container | ||
i18n="@@ngOrcid.signin.signInToComplete" | ||
*ngIf="emailVerified" | ||
> | ||
Sign in to complete your email verification | ||
</ng-container> | ||
<ng-container | ||
i18n="@@myOrcidAlerts.invalidVerifyUrl" | ||
*ngIf="invalidVerifyUrl" | ||
> | ||
Your email couldn't be verified, please check the link you used to | ||
verify it. | ||
</ng-container> | ||
</div> | ||
</div> | ||
</div> | ||
</ng-container> | ||
<ng-container *ngIf="printError && badCredentials"> | ||
<div class="invalid"> | ||
<div> | ||
<mat-icon class="large-material-icon material-symbols-outlined" | ||
>warning</mat-icon | ||
> | ||
</div> | ||
<div class="content"> | ||
<div> | ||
<b i18n="@@ngOrcid.signin.somethingNotQuiteRight"> | ||
Something's not quite right... | ||
</b> | ||
</div> | ||
<div i18n="@@ngOrcid.signin.checkYourSignIn"> | ||
Please check that your sign in details are correct and then try | ||
signing in again | ||
</div> | ||
</div> | ||
</div> | ||
</ng-container> | ||
</ng-container> | ||
<ng-container *ngIf="!signInUpdatesV1Togglz"> | ||
<mat-toolbar> | ||
<mat-toolbar-row> | ||
<div role="alert"> | ||
<p class="mat-body-2"> | ||
<ng-container | ||
i18n="@@myOrcidAlerts.invalidVerifyUrl" | ||
*ngIf="invalidVerifyUrl" | ||
> | ||
Your email couldn't be verified, please check the link you used to | ||
verify it. | ||
</ng-container> | ||
<ng-container | ||
i18n="@@myOrcidAlerts.emailVerified" | ||
*ngIf="emailVerified" | ||
> | ||
Thank you for verifying your email | ||
</ng-container> | ||
</p> | ||
</div> | ||
</mat-toolbar-row> | ||
</mat-toolbar> | ||
</ng-container> | ||
<ng-container *ngIf="signInUpdatesV1Togglz"> | ||
<ng-container *ngIf="emailVerified || invalidVerifyUrl"> | ||
<div | ||
[ngClass]="{ | ||
verification: emailVerified, | ||
invalid: invalidVerifyUrl | ||
}" | ||
> | ||
<div> | ||
<mat-icon class="large-material-icon material-symbols-outlined"> | ||
<ng-container *ngIf="emailVerified">check_circle</ng-container> | ||
<ng-container *ngIf="invalidVerifyUrl">warning</ng-container> | ||
</mat-icon> | ||
</div> | ||
<div class="content"> | ||
<div> | ||
<b i18n="@@ngOrcid.signin.almostDone"> Almost done! </b> | ||
</div> | ||
<div> | ||
<ng-container | ||
i18n="@@ngOrcid.signin.signInToComplete" | ||
*ngIf="emailVerified" | ||
> | ||
Sign in to complete your email verification | ||
</ng-container> | ||
<ng-container | ||
i18n="@@myOrcidAlerts.invalidVerifyUrl" | ||
*ngIf="invalidVerifyUrl" | ||
> | ||
Your email couldn't be verified, please check the link you used to | ||
verify it. | ||
</ng-container> | ||
</div> | ||
</div> | ||
</div> | ||
</ng-container> | ||
<ng-container *ngIf="printError && badCredentials"> | ||
<div class="invalid"> | ||
<div> | ||
<mat-icon class="large-material-icon material-symbols-outlined" | ||
>warning</mat-icon | ||
> | ||
</div> | ||
<div class="content"> | ||
<div> | ||
<b i18n="@@ngOrcid.signin.somethingNotQuiteRight"> | ||
Something's not quite right... | ||
</b> | ||
</div> | ||
<div i18n="@@ngOrcid.signin.checkYourSignIn"> | ||
Please check that your sign in details are correct and then try | ||
signing in again. | ||
</div> | ||
</div> | ||
</div> | ||
</ng-container> | ||
</ng-container> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.