It's my first time with Ionic framework. I want to center a "ion-button", how I can do it? This is my view:
This is my html code:
<ion-header>
<ion-navbar>
<button ion-button menuToggle>
<ion-icon name="menu"></ion-icon>
</button>
<ion-title>Login</ion-title>
</ion-navbar>
</ion-header>
<ion-content padding>
<h3>Effettua l'accesso</h3>
<p>
Esegui il login oppure procedi come utente non registrato. Clicca in alto a sinistra per vedere il menu.
</p>
<form ng-submit="submitLogin()">
<tr>
<td>Email</td>
<td><input type="text" ng-model="prodescForm.description"/></td>
</tr>
<tr>
<td>Password</td>
<td><input type="text" ng-model="prodescForm.registerDiscount" /></td>
</tr>
<button ion-button>Login</button>
</form>
</ion-content>
note: I just changed "page1.html" of a ionic project with sidebar. How I can center this button?