OpenSlides/client/src/app/site/login/login.component.html

30 lines
1016 B
HTML
Raw Normal View History

2018-06-25 17:03:52 +02:00
<mat-card class="login-card">
<mat-card-header>
<mat-card-title>OpenSides 3 - Login</mat-card-title>
</mat-card-header>
<mat-card-content>
<form class="login-full-widht">
<table class="example-full-width" cellspacing="0">
<tr>
<td>
<mat-form-field class="login-full-widht">
2018-06-30 16:56:18 +02:00
<input matInput placeholder="Username" [(ngModel)]="username" name="username" required>
2018-06-25 17:03:52 +02:00
</mat-form-field>
</td>
</tr>
<tr>
<td>
<mat-form-field class="example-full-width">
2018-06-30 16:56:18 +02:00
<input matInput placeholder="Password" [(ngModel)]="password" type="password" name="password" required>
2018-06-25 17:03:52 +02:00
</mat-form-field>
</td>
</tr>
</table>
</form>
<mat-spinner [style.display]="showSpinner ? 'block' : 'none'"></mat-spinner>
</mat-card-content>
<mat-card-actions>
<button mat-raised-button (click)="formLogin()" color="primary">Login</button>
</mat-card-actions>
2018-06-30 16:56:18 +02:00
</mat-card>