Search code examples
user-interfaceionic-frameworkionic-material

Login with ionic and material design


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 how to add it in exciting project that it will load the login form first and after that will redirect to regular page. My project looks like:

app.config(function ($stateProvider, $urlRouterProvider) {
    $stateProvider

        .state('app', {
            url: "/app",
            abstract: true,
            templateUrl: "templates/menu.html",
            controller: 'AppCtrl'
        })
        .state('app.placeslists', {
            url: "/placeslists",
            views: {
                'menuContent': {
                    templateUrl: "templates/placeslists.html",
                    controller: 'PlaceslistsCtrl'
                }
            }
        })

How can I add the login page with authentication (token) that it will load first and how can I add the material for login page in easy way.

Thanks!!!


Solution

  • I found at the end all info with demos you can find also in: https://github.com/zachsoft/Ionic-Material