update styling
This commit is contained in:
parent
1cf8175907
commit
7a9e2395ef
@ -1,2 +1,2 @@
|
||||
<h1>Bsp 1 Gruppe 4</h1>
|
||||
<h1 style="text-align: center; margin-top: 1em">Bsp 1 Gruppe 4</h1>
|
||||
<app-login></app-login>
|
||||
|
||||
@ -0,0 +1,24 @@
|
||||
#userComp {
|
||||
position: fixed;
|
||||
top: 2em;
|
||||
right: 8em;
|
||||
}
|
||||
|
||||
#loginBtnWrapper {
|
||||
width: 100%;
|
||||
text-align: center;
|
||||
display: block;
|
||||
margin-top: 10em;
|
||||
}
|
||||
|
||||
#loginBtnWrapper > button {
|
||||
font-size: 2em;
|
||||
width: 8em;
|
||||
height: 2em;
|
||||
}
|
||||
|
||||
#logoutBtn {
|
||||
position: fixed;
|
||||
right: 2em;
|
||||
top: 4.5em;
|
||||
}
|
||||
@ -1,11 +1,20 @@
|
||||
<button (click)="login()">Login</button>
|
||||
<button mat-raised-button (click)="gotoBackend()">Call Backend</button>
|
||||
<span id="loginBtnWrapper">
|
||||
<button *ngIf="!parsedToken"
|
||||
mat-raised-button color="primary"
|
||||
(click)="login()">Login</button>
|
||||
</span>
|
||||
<br>
|
||||
<button (click)="logout()">Logout</button>
|
||||
<br>
|
||||
<button (click)="gotoBackend()">Call Backend</button>
|
||||
<div *ngIf="parsedToken" id="userComp">
|
||||
<span style="display: inline-grid">
|
||||
<img alt="Profile picture" [src]="parsedToken.picture" style="height:100px;">
|
||||
<span style="margin: auto">{{parsedToken.given_name}} {{parsedToken.family_name}}</span>
|
||||
</span>
|
||||
<button mat-raised-button color="warn" id="logoutBtn"
|
||||
(click)="logout()">Logout</button>
|
||||
|
||||
</div>
|
||||
|
||||
<br>
|
||||
<p *ngIf="errorMessage">Error on login: {{errorMessage}}</p>
|
||||
<div *ngIf="parsedToken">
|
||||
{{parsedToken.given_name}} {{parsedToken.family_name}}
|
||||
<img alt="Profile picture" [src]="parsedToken.picture" style="height:100px;">
|
||||
</div>
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user