diff --git a/app/pods/login/controller.js b/app/pods/login/controller.js index 70eca2b..2b2a42a 100644 --- a/app/pods/login/controller.js +++ b/app/pods/login/controller.js @@ -7,12 +7,12 @@ export default Ember.Controller.extend({ let session = this.get('session'); let authenticator = 'simple-auth-authenticator:token'; - this.set('loading', true); // Manually clean up because there might not be a transition this.get('flashMessages').clearMessages(); - session.authenticate(authenticator, credentials).then(null, (error)=> { - this.set('loading', false); - this.get('flashMessages').error(error.error); + this.transitionTo('loading').then(() => { + session.authenticate(authenticator, credentials).then(null, (error)=> { + this.get('flashMessages').error(error.error); + }); }); } } 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}} diff --git a/app/pods/protected/loading/template.hbs b/app/pods/protected/loading/template.hbs new file mode 100644 index 0000000..e5a3e05 --- /dev/null +++ b/app/pods/protected/loading/template.hbs @@ -0,0 +1 @@ +{{loading-panel}}