-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ab35031
commit 4c6f866
Showing
8 changed files
with
176 additions
and
13 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
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
25 changes: 25 additions & 0 deletions
25
src/js/widgets/authentication/templates/resend-verification-email.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 |
---|---|---|
@@ -0,0 +1,25 @@ | ||
<div class="panel panel-default"> | ||
<div class="panel-heading">Resend Verification Email</div> | ||
<form class="panel-body"> | ||
<div class="form-group has-feedback"> | ||
<label for="email" class="control-label">Email address</label> | ||
<input type="email" class="form-control" id="email" name="email" placeholder="Enter email" required> | ||
<span class="help-block no-show s-help-block"></span> | ||
</div> | ||
<button type="submit" class="btn btn-primary">Resend Verification Email</button> | ||
</form> | ||
<div style="margin-top: 1rem; text-align: center;"> | ||
<button type="button" class="btn btn-link show-login">Back to Login</button> | ||
</div> | ||
|
||
{{#if hasError}} | ||
<div class="row"> | ||
<div class="col-sm-10 col-sm-offset-1 text-center"> | ||
<div class="alert alert-danger"> | ||
<p>{{errorMsg}}</p> | ||
<p><a class="link" id="dismiss-error">Dismiss</a></p> | ||
</div> | ||
</div> | ||
</div> | ||
{{/if}} | ||
</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
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