2017-10-16 17:16:14 +02:00
|
|
|
<mat-sidenav-container fullscreen>
|
2024-07-02 19:19:05 +02:00
|
|
|
<mat-toolbar class="mat-elevation-z5" color="primary">
|
|
|
|
<a id="nav-logo" routerLink="/"><img id="nav-img"
|
|
|
|
src="assets/images/openvidu_vert_white_bg_trans_cropped.png" />LiveKit TestApp</a>
|
|
|
|
</mat-toolbar>
|
|
|
|
<main>
|
|
|
|
<mat-form-field>
|
|
|
|
<mat-label>LiveKit URL</mat-label>
|
|
|
|
<input id="livekit-url" matInput placeholder="LiveKit URL" [ngModel]="livekitUrl"
|
|
|
|
(ngModelChange)="updateUrl($event)">
|
|
|
|
</mat-form-field>
|
|
|
|
<mat-form-field>
|
|
|
|
<mat-label>LiveKit Api Key</mat-label>
|
|
|
|
<input id="livekit-api-key" matInput placeholder="LiveKit Api Key" [ngModel]="livekitApiKey"
|
|
|
|
(ngModelChange)="updateApiKey($event)">
|
|
|
|
</mat-form-field>
|
|
|
|
<mat-form-field>
|
|
|
|
<mat-label>LiveKit Api Secret</mat-label>
|
|
|
|
<input id="livekit-api-secret" matInput type="password" placeholder="LiveKit Api Secret"
|
|
|
|
[ngModel]="livekitApiSecret" (ngModelChange)="updateApiSecret($event)">
|
|
|
|
</mat-form-field>
|
|
|
|
<app-test-sessions></app-test-sessions>
|
|
|
|
</main>
|
|
|
|
</mat-sidenav-container>
|