18 lines
648 B
HTML
18 lines
648 B
HTML
<div class="content">
|
|
<mat-card style="max-width: 500px;" flex="50">
|
|
<mat-card-header style="padding:10px; background-color: rgba(0,0,0,.03);">
|
|
<mat-card-title>Login to the Skydive log</mat-card-title>
|
|
</mat-card-header>
|
|
<mat-card-content>
|
|
<mat-tab-group mat-align-tabs="center" animationDuration="0ms">
|
|
<mat-tab label="Login with a user" tabIndex="-1">
|
|
<app-login-user></app-login-user>
|
|
</mat-tab>
|
|
<mat-tab label="Create and login a user" tabIndex="-1">
|
|
<app-create-user></app-create-user>
|
|
</mat-tab>
|
|
</mat-tab-group>
|
|
</mat-card-content>
|
|
</mat-card>
|
|
</div>
|