Files
roboto-promoto/app/scripts/controllers/signup.js
Fergal Moran d49dc8b3bf Initial Commit
2014-03-20 11:32:56 +00:00

33 lines
897 B
JavaScript

'use strict';
angular.module('robotoApp')
.controller('SignupCtrl', function ($scope, Auth, $location) {
$scope.user = {};
$scope.errors = {};
$scope.register = function(form) {
$scope.submitted = true;
if(form.$valid) {
Auth.createUser({
name: $scope.user.name,
email: $scope.user.email,
password: $scope.user.password
})
.then( function() {
// Account created, redirect to home
$location.path('/');
})
.catch( function(err) {
err = err.data;
$scope.errors = {};
// Update validity of form fields that match the mongoose errors
angular.forEach(err.errors, function(error, field) {
form[field].$setValidity('mongoose', false);
$scope.errors[field] = error.message;
});
});
}
};
});