mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
45 lines
1.0 KiB
HTML
45 lines
1.0 KiB
HTML
|
|
<ion-toolbar><ion-title>Inline Label Text Input</ion-title></ion-toolbar>
|
|
|
|
|
|
<ion-content>
|
|
|
|
<form (ng-submit)="submit($event)" [ng-form-model]="loginForm">
|
|
|
|
<ion-list>
|
|
<ion-input>
|
|
<ion-label>Email:</ion-label>
|
|
<input ng-control="email" type="email">
|
|
<button clear item-right>
|
|
<icon mail></icon>
|
|
</button>
|
|
</ion-input>
|
|
|
|
<ion-input>
|
|
<ion-label>Username:</ion-label>
|
|
<input ng-control="username" type="text">
|
|
<button clear item-right>
|
|
<icon person></icon>
|
|
</button>
|
|
</ion-input>
|
|
|
|
<ion-input>
|
|
<ion-label>Password:</ion-label>
|
|
<input ng-control="password" type="password">
|
|
<button clear item-right>
|
|
<icon lock></icon>
|
|
</button>
|
|
</ion-input>
|
|
|
|
<ion-input>
|
|
<ion-label>Comments:</ion-label>
|
|
<textarea ng-control="comments">Comment value</textarea>
|
|
</ion-input>
|
|
</ion-list>
|
|
|
|
<button block type="submit">Login</button>
|
|
|
|
</form>
|
|
|
|
</ion-content>
|