App in ionic framework without tab

My app doesnot need any tab .Can i create a app without any tab using onic framework? But page will navigate on click of buuton.I have to first display a login page then on login i would want it to display list of items on click of it edit page is displayed.How can it be done?I have tried below code index.html

 <body ng-app="starter">
       <ion-nav-view name="login"></ion-nav-view>
       <ion-nav-view name="home"></ion-nav-view>
    </body>

Then

  angular.module('starter', ['ionic','starter.controllers'])
    .run(function($ionicPlatform) {
      $ionicPlatform.ready(function() {

    if(window.cordova && window.cordova.plugins.Keyboard) {
      cordova.plugins.Keyboard.hideKeyboardAccessoryBar(true);
    }
    if(window.StatusBar) {
      StatusBar.styleDefault();
    }
     });
    })
    .config(function($stateProvider, $urlRouterProvider) { 

    $stateProvider    
    .state('login', {
      url: '/login',
      views: {
        'login': {
          templateUrl: 'templates/login.html',
          controller: 'LoginCtrl'
        }
      }
    })

    $urlRouterProvider.otherwise('/login');
    });

Then in login.html

<ion-view title="Login">
 <ion-content class="has-header padding">
    login button and other inputs
  </ion-content>
</ion-view>

Now on login home page should be displayed can anyone suggest how to route