mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-18 11:17:19 +08:00
25 lines
508 B
HTML
25 lines
508 B
HTML
<ion-navbar *navbar hide-back-button class="android-attr">
|
|
<ion-title>Stacked Labels</ion-title>
|
|
</ion-navbar>
|
|
|
|
<ion-content class="has-header components-demo">
|
|
<ion-list>
|
|
|
|
<ion-input stacked-label>
|
|
<ion-label>Username</ion-label>
|
|
<input type="text">
|
|
</ion-input>
|
|
|
|
<ion-input stacked-label>
|
|
<ion-label>Password</ion-label>
|
|
<input type="password">
|
|
</ion-input>
|
|
|
|
</ion-list>
|
|
|
|
<div padding>
|
|
<button primary block>Sign In</button>
|
|
</div>
|
|
|
|
</ion-content>
|