Assuming you have the right association between users and login,
you can just create a user including a login:
User.create({
name: "name",
Login: {...}
},{
include: Login
})
you can find more information here:
http://docs.sequelizejs.com/manual/tutorial/associations.html#creating-with-associations