(function () { 'use strict'; angular .module('codeAPLEBOX.client.user.employeeLogin.findpassword') .config(employeefindpasswordConfig); /* @ngInject */ function employeefindpasswordConfig($stateProvider) { $stateProvider // 로그인 안된 상태 .state('main.employeefindpassword', { url: '/employeefindpassword', views: { 'content': { templateUrl: 'app/layout/user/employeeLogin/findpassword/findpassword.tmpl.html', controller: 'employeefindpasswordController', controllerAs: 'vm' } } }); } })();