Skip to content
Snippets Groups Projects
Commit 901a3756 authored by Lukas Mauß's avatar Lukas Mauß
Browse files

Merge branch 'allow-lecture-guest-session' into 'master'

Allow lecture guest session

Closes #262

See merge request arsnova/arsnova-lite!226
parents cc8adac8 b9964f9a
Branches
Tags
No related merge requests found
......@@ -15,7 +15,7 @@
<mat-error *ngIf="passwordFormControl.hasError('required')">{{ 'login.password-required' | translate }}</mat-error>
</mat-form-field>
<button mat-raised-button class="loginButton" (click)="login(userEmail.value, userPassword.value)">{{ 'login.login' | translate }}</button>
<button mat-raised-button *ngIf="role === 0"(click)="guestLogin()" type="button">
<button mat-raised-button (click)="guestLogin()" type="button">
{{ 'login.guest-login' | translate }}
</button>
<div align="start">
......
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