Disabling Sideview for a single page in ionic framework

I am using side menus for my app. but for the login page alone i want to disable the side view. I know we can use but i want to disable for it.

You can inject the delegate to handle this:

.controller('LoginCtrl', [$ionicSideMenuDelegate, function($ionicSideMenuDelegate) {

    $ionicSideMenuDelegate.canDragContent(false);

}]);

Or add the attribute to the view:

<side-menu-content drag-content="false">

And if you have the menu button hide it on the login page.