12 lines
353 B
HTML
12 lines
353 B
HTML
<p>login works!</p>
|
|
<button (click)="login()">Login</button>
|
|
<button (click)="logout()">Logout</button>
|
|
<br>
|
|
<button (click)="paramsFromUrl()">Get Params from URL</button>
|
|
<br>
|
|
Token: <input type="text" [(ngModel)]="id_token">
|
|
<br>
|
|
State: <input type="text" [(ngModel)]="state">
|
|
<br>
|
|
<div *ngIf="loginHTML" [innerHTML]="loginHTML" title="OpenId"></div>
|