2020-07-23 17:10:27 -04:00
|
|
|
<iframe *ngIf="embedUrl"
|
|
|
|
id="bigBlueButtonContainer"
|
|
|
|
[src]="embedUrl"
|
|
|
|
(load)="onIframeLoad()"
|
|
|
|
frameborder="0"
|
|
|
|
allowfullscreen
|
|
|
|
width="100%"
|
|
|
|
height="100%"
|
2020-08-18 05:30:12 -04:00
|
|
|
allow="camera; microphone; encrypted-media; autoplay;"
|
2020-07-23 17:10:27 -04:00
|
|
|
></iframe>
|
|
|
|
|
|
|
|
<div *ngIf="!embedUrl" class="join-conference-wrapper">
|
|
|
|
<div class="join-conference-boat">
|
|
|
|
<div *ngIf="statusMessage; else joinMeetingPrompt" class="join-conference-prompt">
|
|
|
|
<h4 [innerHTML]="statusMessage"></h4>
|
|
|
|
</div>
|
|
|
|
<ng-template #joinMeetingPrompt>
|
|
|
|
<div class="join-conference-prompt">
|
2020-12-28 22:47:35 -05:00
|
|
|
<h3>{{'BigBlueButton Conference' | translate}}</h3>
|
2020-07-23 17:10:27 -04:00
|
|
|
<button type="button" (click)="joinConference()" class="btn btn-primary btn-large">
|
2020-12-28 22:47:35 -05:00
|
|
|
{{'Join Conference' | translate}}
|
2020-07-23 17:10:27 -04:00
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
</ng-template>
|
|
|
|
</div>
|
|
|
|
</div>
|