diff --git a/src/views/login.js b/src/views/login.js index f83012aea890ee4925b586c5b9f22d6b6b003302..c4f2a1d51563a5b5155110dc2c3fb6d1dfa4e21f 100644 --- a/src/views/login.js +++ b/src/views/login.js @@ -17,18 +17,17 @@ module.exports = { .catch((err) => { this.error = err.message; }); }, }, - m('h3', 'Login'), [ - m('p', this.error), - m('input.input[type=text][placeholder=Username]', { - oninput: m.withAttr('value', (value) => { this.username = value; }), - value: this.username, - }), - m('input.input[placeholder=Password][type=password]', { - oninput: m.withAttr('value', (value) => { this.password = value; }), - value: this.password, - }), - m('button.button[type=submit]', 'Login'), - ], + m('h3', 'Login'), + m('p', this.error), + m('input.input[type=text][placeholder=Username]', { + oninput: m.withAttr('value', (value) => { this.username = value; }), + value: this.username, + }), + m('input.input[placeholder=Password][type=password]', { + oninput: m.withAttr('value', (value) => { this.password = value; }), + value: this.password, + }), + m('button.button[type=submit]', 'Login'), ), ]); },