-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
admin/volunteer: add dedicated email login pages
- Loading branch information
1 parent
3bea19c
commit 42ffcd2
Showing
5 changed files
with
90 additions
and
7 deletions.
There are no files selected for viewing
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
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,37 @@ | ||
{{ define "title" }}Confirm Email{{ end }} | ||
|
||
{{ define "content" }} | ||
<div class="container"> | ||
<div class="row page-header"> | ||
<div class="col"> | ||
<h1>Confirm Email</h1> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<div class="container page-content confirm-email"> | ||
{{ with .Data.Error }} | ||
<div class="row"> | ||
<div class="alert alert-danger" role="alert"> | ||
<p>That login code was expired or invalid.</p> | ||
<p> | ||
Forgot to confirm your email? | ||
<a href="mailto:support@mineshspc.com">Contact Support</a>. | ||
</p> | ||
</div> | ||
</div> | ||
{{ else }} | ||
<div class="row"> | ||
<div class="col m-4 text-center"> | ||
<p> | ||
We've sent an email to <b>{{ .Data.Email }}</b>. | ||
</p> | ||
<p style="font-size: 10em; line-height: 0;"><i class="fa fa-envelope-o"></i></p> | ||
<p> | ||
Please check your email and click the link to confirm your email address and log in. | ||
</p> | ||
</div> | ||
</div> | ||
{{ end }} | ||
</div> | ||
{{ end }} |
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,37 @@ | ||
{{ define "title" }}Confirm Email{{ end }} | ||
|
||
{{ define "content" }} | ||
<div class="container"> | ||
<div class="row page-header"> | ||
<div class="col"> | ||
<h1>Confirm Email</h1> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<div class="container page-content confirm-email"> | ||
{{ with .Data.Error }} | ||
<div class="row"> | ||
<div class="alert alert-danger" role="alert"> | ||
<p>That login code was expired or invalid.</p> | ||
<p> | ||
Forgot to confirm your email? | ||
<a href="mailto:support@mineshspc.com">Contact Support</a>. | ||
</p> | ||
</div> | ||
</div> | ||
{{ else }} | ||
<div class="row"> | ||
<div class="col m-4 text-center"> | ||
<p> | ||
Thanks for volunteering! We've sent an email to <b>{{ .Data.Email }}</b>. | ||
</p> | ||
<p style="font-size: 10em; line-height: 0;"><i class="fa fa-envelope-o"></i></p> | ||
<p> | ||
Please check your email and click the link to confirm your email address and log in. | ||
</p> | ||
</div> | ||
</div> | ||
{{ end }} | ||
</div> | ||
{{ end }} |