import {Validators, Control, ControlGroup} from 'angular2/common'; import {App, Page, NavController} from 'ionic/ionic'; @Page({ templateUrl: 'main.html', }) class SegmentPage { constructor(nav: NavController) { this.nav = nav; this.signInType = 'new'; } goToPage2() { this.nav.push(SegmentPage2); } } @Page({ template: ` Second Page

Page 2

` }) class SegmentPage2 { constructor() { } } @App({ pages: [SegmentPage], template: `` }) class MyApp { constructor() { this.root = SegmentPage; } }