/* Minification failed. Returning unminified contents.
(1,1): run-time error CSS1019: Unexpected token, found '('
(1,11): run-time error CSS1031: Expected selector, found '('
(1,11): run-time error CSS1025: Expected comma or open brace, found '('
(20,2): run-time error CSS1019: Unexpected token, found ')'
(20,3): run-time error CSS1019: Unexpected token, found '('
(20,4): run-time error CSS1019: Unexpected token, found ')'
(21,1): run-time error CSS1019: Unexpected token, found '('
(21,11): run-time error CSS1031: Expected selector, found '('
(21,11): run-time error CSS1025: Expected comma or open brace, found '('
(36,2): run-time error CSS1019: Unexpected token, found ')'
(36,3): run-time error CSS1019: Unexpected token, found '('
(36,4): run-time error CSS1019: Unexpected token, found ')'
 */
(function () {
    'use strict';

    // Define the controller name and assign the function.
    angular
        .module('MOTP.UI.Web')
        .controller('LayoutSelfRegisterController', LayoutSelfRegisterController);

    LayoutSelfRegisterController.$inject = ['LayoutSelfRegisterProcess', 'usSpinnerService', '$sce', '$window', '$timeout', '$rootScope', '$location', '$sessionStorage', '$uibModal'];

    function LayoutSelfRegisterController(LayoutSelfRegisterProcess, usSpinnerService, $sce, $window, $timeout, $rootScope, $location, $sessionStorage, $uibModal) {
        var vm = this;

        vm.initialize = initialize;

        function initialize() {

        }
    }
})();
(function () {
    'use strict';
    angular
           .module('MOTP.UI.Web')
           .service('LayoutSelfRegisterProcess', LayoutSelfRegisterProcess)

    LayoutSelfRegisterProcess.$inject = ['$http'];

    function LayoutSelfRegisterProcess($http) {
        var service = {

        }

        return service;
    }
})();
