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 @@

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"}} + {{one-way-input type="text" class="identification" value=identification update=(action "identificationDidChange") placeholder="Email"}} + {{one-way-input type="password" class="password" value=password update=(action "passwordDidChange") placeholder="Password"}} +