-
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Allow for re-sending verification email
- Loading branch information
Showing
5 changed files
with
52 additions
and
11 deletions.
There are no files selected for viewing
13 changes: 11 additions & 2 deletions
13
src/app/_layout/header-bar/header-bar-verify-email/header-bar-verify-email.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,2 +1,11 @@ | ||
<p>header-bar-verify-email works!</p> | ||
<p *ngIf="show">Should display nag about verifying email!</p> | ||
<div *ngIf="show" class="verify-host"> | ||
<div> | ||
Hey! It seems that you have not verified your email address yet. Users without a verified email might get deleted in the future. | ||
</div> | ||
|
||
<div class="buttons"> | ||
<button type="button" class="button is-info" [disabled]="!canPressButton" (click)="requestNewEmail()"> | ||
Request new verification email | ||
</button> | ||
</div> | ||
</div> |
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
.verify-host { | ||
padding: 10px; | ||
} | ||
|
||
div { | ||
display: flex; | ||
flex-wrap: wrap; | ||
justify-content: space-between; | ||
gap: 0.5em; | ||
} |
26 changes: 22 additions & 4 deletions
26
src/app/_layout/header-bar/header-bar-verify-email/header-bar-verify-email.component.ts
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
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