Skip to content
Snippets Groups Projects
Verified Commit 7f55817b authored by Lukas Maximilian Kimpel's avatar Lukas Maximilian Kimpel
Browse files

Move class attribute to mat-form-field

parent e9192a69
No related merge requests found
<form>
<mat-form-field>
<input matInput class="input-block" #email maxlength="256" placeholder="e-mail">
<mat-form-field class="input-block">
<input matInput #email maxlength="256" placeholder="e-mail">
<mat-hint align="start"><strong></strong></mat-hint>
</mat-form-field>
<mat-form-field>
<input matInput type="password" class="input-block" #passwd maxlength="256" placeholder="password">
<mat-form-field class="input-block">
<input matInput type="password" #passwd maxlength="256" placeholder="password">
<mat-hint align="start"><strong></strong></mat-hint>
<mat-hint align="end">{{passwd.value.length}} / 12</mat-hint>
</mat-form-field>
<mat-form-field>
<input matInput type="password" class="input-block" #passwd2 maxlength="256" placeholder="verify password">
<mat-form-field class="input-block">
<input matInput type="password" #passwd2 maxlength="256" placeholder="verify password">
<mat-hint align="start"><strong></strong></mat-hint>
<mat-hint align="end">{{passwd2.value.length}} / 12</mat-hint>
</mat-form-field>
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment