From 6095c48ffb50da474c84d93b17ce2f4c48190746 Mon Sep 17 00:00:00 2001 From: rhenck <richard.henck@tu-berlin.de> Date: Mon, 31 Aug 2020 17:51:44 +0200 Subject: [PATCH] Move card title out of the form This makes E2E testing easier and makes more sense logically. --- src/app/app-root/login/login.component.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/app-root/login/login.component.html b/src/app/app-root/login/login.component.html index 1320054b..33fbf0b8 100644 --- a/src/app/app-root/login/login.component.html +++ b/src/app/app-root/login/login.component.html @@ -1,7 +1,7 @@ <div fxLayout="row wrap" fxLayoutAlign="center stretch"> <mat-card fxFlex="0 0 400px"> + <mat-card-title>Anmelden</mat-card-title> <form [formGroup]="loginForm" (ngSubmit)="login()" *ngIf="mds.isApiValid"> - <mat-card-title>Anmelden</mat-card-title> <mat-card-content fxLayout="column"> <mat-form-field> <input matInput formControlName="name" placeholder="Anmeldename" (keyup.enter)="pw.focus()"> -- GitLab