I have an ionic project with side menu and all. Now I want to add in simple way and login cool form, like http://ionicmaterial.com/ But the issue I didn\'t see any examples
you can add new state login in app.js which will load login.html and controller and load it by defalut like:
.state('login', { url: '/login', templateUrl: 'templates/login.html', controller: 'LoginCtrl' })
// if none of the above states are matched, use this as the fallback $urlRouterProvider.otherwise('/login');
and in login controller when you successfully login then you can redirect it to any page using $state.go('app.placeslists'); it will load regular pages.