diff --git a/app/pods/login/login-form/component.js b/app/pods/login/login-form/component.js new file mode 100644 index 0000000..56a0f99 --- /dev/null +++ b/app/pods/login/login-form/component.js @@ -0,0 +1,22 @@ +import Ember from 'ember'; + +const { Component } = Ember; + +export default Component.extend({ + // Actions + "on-save": null, + "on-cancel": null, + "on-update": null, + "add-characteristic": null, + "save-measurement": null, + "delete-measurement": null, + + // Property mapping + propertiesList: ['identification', 'password'], + identification: null, + password: null, + + updateField: function(property, value) { + this.set(property, value); + }, +}); diff --git a/app/pods/login/login-form/template.hbs b/app/pods/login/login-form/template.hbs new file mode 100644 index 0000000..8492f1c --- /dev/null +++ b/app/pods/login/login-form/template.hbs @@ -0,0 +1,10 @@ +
+