mirror of
https://github.com/turt2live/matrix-dimension.git
synced 2024-10-01 01:05:53 -04:00
14 lines
550 B
HTML
14 lines
550 B
HTML
<div *ngIf="!hasOpenId" class="reauth-container">
|
|
<button type="button" (click)="onReauthStart()" class="btn btn-primary" [disabled]="busy">
|
|
Click to start OpenID auth
|
|
</button>
|
|
</div>
|
|
<div *ngIf="hasOpenId" class="reauth-container">
|
|
<p>User ID: {{userId}}</p>
|
|
</div>
|
|
<div class="reauth-container">
|
|
<p>{{stateMessage}}</p>
|
|
<p *ngIf="blocked">You have blocked this widget from receiving credentials.</p>
|
|
<p *ngIf="error">An error has occurred - see logs for details</p>
|
|
<small>Widget ID: {{widgetId}}</small>
|
|
</div> |