29 lines
1.3 KiB
HTML
29 lines
1.3 KiB
HTML
<div class="full">
|
|
<div class="color-background-vignette container-global">
|
|
<div class="containerCenter">
|
|
<label for="login_field"><b>LOGIN (after SSO)</b></label>
|
|
</div>
|
|
<div class="imgContainer">
|
|
<img src="assets/images/avatar_generic.svg" alt="Avatar" class="avatar"/>
|
|
</div>
|
|
<div class="container" *ngIf="token === '__CANCEL__'">
|
|
<label for="login_field"><b>ERROR: </b> Request cancel of connection !</label>
|
|
</div>
|
|
<div class="container" *ngIf="token === '__FAIL__'">
|
|
<label for="login_field"><b>ERROR: </b> Connection FAIL !</label>
|
|
</div>
|
|
<div class="container" *ngIf="token === '__LOGOUT__'">
|
|
<label for="login_field"><b>Dis-connected: </b> Redirect soon! </label>
|
|
</div>
|
|
<div class="container" *ngIf="token === 'ERROR_ME'">
|
|
<label for="login_field"><b>ERROR: </b> can not retreive user local informations!</label>
|
|
</div>
|
|
<div class="container" *ngIf="token !== 'ERROR_ME' and token !== '__FAIL__' and token !== '__CANCEL__' and token === '__LOGOUT__'">
|
|
<label for="login_field"><b>Connected: </b> Redirect soon!</label>
|
|
</div>
|
|
<div class="container" *ngIf="token !== 'ERROR_ME' and token !== '__FAIL__' and token !== '__CANCEL__' and token === '__LOGOUT__'">
|
|
<label for="login_field"><b>Welcome back: </b> {{userName}}</label>
|
|
</div>
|
|
</div>
|
|
</div>
|