Advertisement
Guest User

Untitled

a guest
Jan 31st, 2016
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. angular.module('quiz')
  2.   .controller('RegistrationCtrl', ['$scope', '$ionicPopup', 'MobileUserService', function ($scope, $ionicPopup, MobileUserService) {
  3.     'use strict';
  4.     var reg = this;
  5.  
  6.    $scope.registerUser = function(){
  7.      if ($scope.formData.password == $scope.confirmPassword){
  8.       MobileUserService.addMobileUser($scope.formData)
  9.     }
  10.    else{
  11.        console.log("passwords not maches!");
  12.      }};
  13.  
  14.   }]);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement