Merge branch 'master' into clostridium

* master:
  Revert #22
This commit is contained in:
Matthew Dillon 2015-10-21 07:28:59 -07:00
commit 80bd608045
2 changed files with 17 additions and 22 deletions

View file

@ -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);
}
}
});

View file

@ -1,16 +1,12 @@
{{#x-application invalidateSession="invalidateSession"}}
{{#if loading}}
{{loading-panel}}
{{else}}
<form {{action "authenticate" on="submit"}}>
<h2>Log In</h2>
{{input value=identification type="text" placeholder="Email"}}
{{input value=password type="password" placeholder="Password"}}
{{input class="button-gray" type="submit" value="Log In"}}
</form>
<br>
<div>
Forget your password? {{link-to 'Request a lockout email.' 'users.requestlockouthelp'}}
</div>
{{/if}}
<form {{action "authenticate" on="submit"}}>
<h2>Log In</h2>
{{input value=identification type="text" placeholder="Email"}}
{{input value=password type="password" placeholder="Password"}}
{{input class="button-gray" type="submit" value="Log In"}}
</form>
<br>
<div>
Forget your password? {{link-to 'Request a lockout email.' 'users.requestlockouthelp'}}
</div>
{{/x-application}}