Permalink
Show file tree
Hide file tree
57 changes: 17 additions & 40 deletions
57
app/assets/javascripts/app/controllers/email_verify.coffee
28 changes: 28 additions & 0 deletions
28
app/assets/javascripts/app/controllers/user_profile.coffee
1 comment
on commit
sign in to comment.
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
Fixes issue #2907 - Password strength settings are ignored when creat…
…ing new customer accounts. Make login available to verified users only.
- Loading branch information
1 parent
a336d52
commit 4014839
Showing
9 changed files
with
120 additions
and
199 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
82 changes: 0 additions & 82 deletions
82
app/assets/javascripts/app/controllers/widget/user_signup_check.coffee
This file was deleted.
Oops, something went wrong.
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,16 @@ | ||
| <div class="signup fullscreen"> | ||
| <div class="fullscreen-center"> | ||
| <div class="hero-unit fullscreen-body"> | ||
| <h1><%- @T('Registration successful!') %></h1> | ||
| <p><%- @T('Thanks for joining. Email sent to "%s".', @email) %></p> | ||
| <p><%- @T('Please click the link in the verification email.') %> <%- @T('If you don\'t see the email, check other places it might be, like your junk, spam, social, or other folders.') %></p> | ||
| <form> | ||
| <input type="hidden" name="email" value="<%= @email %>"> | ||
| <div class="form-controls"> | ||
| <a class="btn btn--text btn--subtle js-cancel" href="#login"><%- @T('Go Back') %></a> | ||
| <button class="btn btn--primary js-submitResend align-right"><%- @T('Resend verification email') %></button> | ||
| </div> | ||
| </form> | ||
| </div> | ||
| </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
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.
4014839There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
#2907