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