mirror of
https://github.com/richard-loafle/fuse-angular.git
synced 2025-04-27 02:23:10 +00:00
13 lines
488 B
HTML
13 lines
488 B
HTML
<div class="example-container">
|
|
<mat-form-field>
|
|
<input matInput placeholder="Enter your password" [type]="hide ? 'password' : 'text'">
|
|
<mat-icon matSuffix (click)="hide = !hide">{{hide ? 'visibility' : 'visibility_off'}}</mat-icon>
|
|
</mat-form-field>
|
|
|
|
<mat-form-field>
|
|
<input matInput placeholder="Amount" type="number" class="example-right-align">
|
|
<span matPrefix>$ </span>
|
|
<span matSuffix>.00</span>
|
|
</mat-form-field>
|
|
</div>
|