2017-10-16 17:16:14 +02:00
|
|
|
<mat-sidenav-container fullscreen>
|
|
|
|
<mat-toolbar class="mat-elevation-z5" color="primary">
|
2017-09-26 18:13:00 +02:00
|
|
|
<div layout-align='center center' layout='column'>
|
2017-09-30 13:48:40 +02:00
|
|
|
<a id="nav-logo" routerLink="/"><img id="nav-img" src="assets/images/openvidu_vert_white_bg_trans_cropped.png"/> TestApp</a>
|
2022-11-23 22:59:43 +01:00
|
|
|
<a mat-button id="toolbar-sessions" routerLink="/test-sessions"><span>SESSIONS</span></a>
|
|
|
|
<a mat-button id="toolbar-scenarios" routerLink="/test-scenarios"><span>SCENARIOS</span></a>
|
|
|
|
<a mat-button id="toolbar-apirest" routerLink="/test-apirest"><span>API REST</span></a>
|
2017-09-30 13:48:40 +02:00
|
|
|
</div>
|
2017-10-16 17:16:14 +02:00
|
|
|
</mat-toolbar>
|
2017-09-26 18:13:00 +02:00
|
|
|
<main>
|
2018-06-15 14:45:47 +02:00
|
|
|
<mat-form-field appearance="outline">
|
2017-10-16 17:16:14 +02:00
|
|
|
<input id="openvidu-url" matInput placeholder="OpenVidu Server URL" [ngModel]="openviduURL" (ngModelChange)="updateUrl($event)">
|
|
|
|
</mat-form-field>
|
2018-06-15 14:45:47 +02:00
|
|
|
<mat-form-field appearance="outline">
|
2017-10-16 17:16:14 +02:00
|
|
|
<input id="openvidu-secret" matInput placeholder="OpenVidu Server Secret" [ngModel]="openviduSecret" (ngModelChange)="updateSecret($event)">
|
|
|
|
</mat-form-field>
|
2017-09-26 18:13:00 +02:00
|
|
|
<router-outlet></router-outlet>
|
|
|
|
</main>
|
2017-10-16 17:16:14 +02:00
|
|
|
</mat-sidenav-container>
|