From 8e11942521381cdb4c7ac1e5211eee2a8cf40ae6 Mon Sep 17 00:00:00 2001 From: Matthew Dillon Date: Wed, 21 Oct 2015 07:27:33 -0700 Subject: [PATCH] Revert #22 --- app/pods/login/controller.js | 15 +++++++-------- app/pods/login/template.hbs | 24 ++++++++++-------------- 2 files changed, 17 insertions(+), 22 deletions(-) diff --git a/app/pods/login/controller.js b/app/pods/login/controller.js index d1a41b7..ec1077b 100644 --- a/app/pods/login/controller.js +++ b/app/pods/login/controller.js @@ -3,20 +3,19 @@ import Ember from 'ember'; export default Ember.Controller.extend({ session: Ember.inject.service('session'), - loading: false, - actions: { authenticate: function() { // Manually clean up because there might not be a transition this.get('flashMessages').clearMessages(); + let { identification, password } = this.getProperties('identification', 'password'); - this.set('loading', true); - this.get('session').authenticate('authenticator:oauth2', identification, password).catch((error) => { - this.transitionToRoute('login'); - this.set('loading', false); - this.get('flashMessages').error(error.error); + this.transitionToRoute('loading').then(() => { + this.get('session').authenticate('authenticator:oauth2', identification, password).catch((error) => { + this.transitionToRoute('login').then(() => { + this.get('flashMessages').error(error.error); + }); + }); }); - this.set('loading', false); } } }); diff --git a/app/pods/login/template.hbs b/app/pods/login/template.hbs index 7d3f5ac..c56ca42 100644 --- a/app/pods/login/template.hbs +++ b/app/pods/login/template.hbs @@ -1,16 +1,12 @@ {{#x-application invalidateSession="invalidateSession"}} - {{#if loading}} - {{loading-panel}} - {{else}} -
-

Log In

- {{input value=identification type="text" placeholder="Email"}} - {{input value=password type="password" placeholder="Password"}} - {{input class="button-gray" type="submit" value="Log In"}} -
-
-
- Forget your password? {{link-to 'Request a lockout email.' 'users.requestlockouthelp'}} -
- {{/if}} +
+

Log In

+ {{input value=identification type="text" placeholder="Email"}} + {{input value=password type="password" placeholder="Password"}} + {{input class="button-gray" type="submit" value="Log In"}} +
+
+
+ Forget your password? {{link-to 'Request a lockout email.' 'users.requestlockouthelp'}} +
{{/x-application}}