diff options
| author | Rene Ae <aehtyb@gmail.com> | 2015-12-22 01:26:04 -0600 |
|---|---|---|
| committer | Rene Ae <aehtyb@gmail.com> | 2015-12-22 01:26:04 -0600 |
| commit | 89b39c69c00c180287912f4777ea2ec487fa6412 (patch) | |
| tree | 440009503c4f5ea80d613d57f5293f91c59a0ba5 /StoneIsland/www/js | |
| parent | 56275fcf2d133967f0f4baed9542d233e5e36ec4 (diff) | |
bugfixes - forgot password
Diffstat (limited to 'StoneIsland/www/js')
| -rwxr-xr-x | StoneIsland/www/js/lib/auth/LoginView.js | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/StoneIsland/www/js/lib/auth/LoginView.js b/StoneIsland/www/js/lib/auth/LoginView.js index 4ef2823f..504827c8 100755 --- a/StoneIsland/www/js/lib/auth/LoginView.js +++ b/StoneIsland/www/js/lib/auth/LoginView.js @@ -6,6 +6,7 @@ var LoginView = FormView.extend({ events: { "click .newuser": "new_user", + "click .forgotpassword": "forgot_password", "submit form": "save", }, @@ -29,6 +30,10 @@ var LoginView = FormView.extend({ new_user: function(){ app.router.go("account/signup") + }, + + forgot_password: function(){ + window.open("http://www.stoneisland.co.uk/pages/forgotten-password", '_system') }, validate_presence: { |
