diff --git a/app/pods/login/login-form/component.js b/app/pods/login/login-form/component.js index 22e2cff..638cba4 100644 --- a/app/pods/login/login-form/component.js +++ b/app/pods/login/login-form/component.js @@ -15,5 +15,13 @@ export default Component.extend({ submit: function() { return this.attrs['on-submit'](this.get('identification'), this.get('password')); }, + + identificationDidChange: function(value) { + this.set('identification', value); + }, + + passwordDidChange: function(value) { + this.set('password', value); + }, }, }); diff --git a/app/pods/login/login-form/template.hbs b/app/pods/login/login-form/template.hbs index 65f5adb..45afb9b 100644 --- a/app/pods/login/login-form/template.hbs +++ b/app/pods/login/login-form/template.hbs @@ -1,8 +1,10 @@