Skip to content
Snippets Groups Projects
Commit 1beea2c9 authored by David Noah Donges's avatar David Noah Donges
Browse files

Merge branch '69-adjust-stylings-to-display-input-fields-underneath-each-other' into 'master'

Resolve "Adjust stylings to display input fields underneath each other"

Closes #69

See merge request swtp-block-ws17/arsnova-angular-frontend!19
parents 688b8361 b8c50f00
No related merge requests found
<form> <form>
<mat-form-field> <mat-form-field class="input-block">
<input matInput class="input-block" #email maxlength="256" placeholder="e-mail"> <input matInput #email maxlength="256" placeholder="e-mail">
<mat-hint align="start"><strong></strong></mat-hint> <mat-hint align="start"><strong></strong></mat-hint>
</mat-form-field> </mat-form-field>
<mat-form-field> <mat-form-field class="input-block">
<input matInput type="password" class="input-block" #passwd maxlength="256" placeholder="password"> <input matInput type="password" #passwd maxlength="256" placeholder="password">
<mat-hint align="start"><strong></strong></mat-hint> <mat-hint align="start"><strong></strong></mat-hint>
<mat-hint align="end">{{passwd.value.length}} / 12</mat-hint> <mat-hint align="end">{{passwd.value.length}} / 12</mat-hint>
</mat-form-field> </mat-form-field>
<mat-form-field> <mat-form-field class="input-block">
<input matInput type="password" class="input-block" #passwd2 maxlength="256" placeholder="verify password"> <input matInput type="password" #passwd2 maxlength="256" placeholder="verify password">
<mat-hint align="start"><strong></strong></mat-hint> <mat-hint align="start"><strong></strong></mat-hint>
<mat-hint align="end">{{passwd2.value.length}} / 12</mat-hint> <mat-hint align="end">{{passwd2.value.length}} / 12</mat-hint>
</mat-form-field> </mat-form-field>
......
mat-form-field.input-block {
display: block;
}
...@@ -5,3 +5,5 @@ html, body { ...@@ -5,3 +5,5 @@ html, body {
width: 100%; width: 100%;
height: 100%; height: 100%;
} }
@import '_form.scss';
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