New user double check password + aesthetics

This commit is contained in:
Matthew Dillon 2015-06-25 10:12:03 -08:00
parent f95b6e4c5f
commit a5f98bbe23
4 changed files with 24 additions and 16 deletions

View file

@ -6,7 +6,14 @@ export default Ember.Component.extend({
actions: { actions: {
save: function() { save: function() {
var user = this.get('user'); let user = this.get('user');
// All validation is server-side, except for password verification matching
if (user.get('password') !== this.get('passwordConfirm')) {
this.get('flashMessages').clearMessages();
this.get('flashMessages').error("Password fields don't match");
return;
}
if (user.get('isDirty')) { if (user.get('isDirty')) {
user.save().then(() => { user.save().then(() => {

View file

@ -13,11 +13,11 @@
</li> </li>
<li> <li>
<label>Password</label> <label>Password</label>
{{input value=user.password}} {{input type="password" value=user.password}}
</li> </li>
<li> <li>
<label>Password (confirm)</label> <label>Password (confirm)</label>
{{input value=passwordConfirm}} {{input type="password" value=passwordConfirm}}
</li> </li>
<li> <li>
<a class="button-green smaller" {{action 'save'}}> <a class="button-green smaller" {{action 'save'}}>

View file

@ -14,9 +14,10 @@ export default Ember.Route.extend(UnauthenticatedRouteMixin, {
actions: { actions: {
success: function() { success: function() {
this.transitionTo('login'); this.transitionTo('login').then(() => {
this.get('flashMessages').information(`You have successfully signed up. this.get('flashMessages').information(`You have successfully signed up.
Please check your email for further instructions.`); Please check your email for further instructions.`);
});
} }
}, },
}); });

View file

@ -47,16 +47,16 @@ module.exports = function(app) {
}); });
usersRouter.post('/', function(req, res) { usersRouter.post('/', function(req, res) {
// req.body.user.id = Math.max.apply(Math, USERS.map(function(o){return o.id;})) + 1; req.body.user.id = Math.max.apply(Math, USERS.map(function(o){return o.id;})) + 1;
// res.status(201).send(req.body); res.status(201).send(req.body);
// NOTE - use the following for testing errors // // NOTE - use the following for testing errors
res.status(422).send({ // res.status(422).send({
'errors':{ // 'errors':{
"name": ["Must provide a value"], // "name": ["Must provide a value"],
"email": ["Must provide a value"], // "email": ["Must provide a value"],
"password": ["Must provide a value"], // "password": ["Must provide a value"],
} // }
}).end(); // }).end();
}); });
usersRouter.get('/:id', function(req, res) { usersRouter.get('/:id', function(req, res) {