How to remove menu from welcome and login page on starter super template?

I just create a project :

$ ionic start myApp super

I want to disable or remove menu on welcome and login page

I’m curious to know if you ever figured out the answer to your question. I’m having the reverse issue. I used the super template to create a sample and I can’t see the menu anywhere. I added the code to the list-master page but it doesn’t appear…

import { IonicPage, MenuController, ModalController, NavController } from 'ionic-angular';
...
  constructor(public navCtrl: NavController, public menu: MenuController, public items: Items, public modalCtrl: ModalController) {
...
  ionViewDidEnter() {
    this.menu.enable(true);
  }

I can set a breakpoint and I see the code stop and execute this line, but I don’t see the menu. Is there something else I’m supposed to do to populate it? Tell it where to appear?

TIA, Mike