Created
February 23, 2022 13:43
-
-
Save sunny7899/3edb0110f2568e15cd3639632e0245fd to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="container-fluid banner"> | |
<p class="banner-text">Video Call</p> | |
</div> | |
<div class="container"> | |
<form id="join-form" name="join-form" class="mt-4"> | |
<div class="row join-info-group"> | |
<div class="col-sm"> | |
<p class="join-info-text">Join call</p> | |
</div> | |
</div> | |
<!-- UI Controls --> | |
<div class="button-group mt-3"> | |
<button id="join" type="submit" class="btn btn-live btn-sm" (click)="startCall()">Join</button> | |
<button id="mic-btn" type="button" class="btn btn-live btn-sm" [disabled]="this.hideBtns"> | |
<i id="mic-icon" class="fas fa-microphone"></i> | |
</button> | |
<button id="leave" type="button" class="btn btn-live btn-sm" [disabled]="this.hideBtns" (click)="logout()">Leave</button> | |
</div> | |
</form> | |
<!-- Streams --> | |
<div class="row video-group"> | |
<div class="col"> | |
<p id="local-player-name" class="player-name"></p> | |
<div id="local-player" class="player"></div> | |
</div> | |
<div class="w-100">Remote Users</div> | |
<div class="col" *ngFor="let i of stream.remoteUsers"> | |
<div id="{{ 'remote-playerlist' + i.uid}}" class="ui centered medium image" style=" width: 200px; | |
height: 200px;">{{i.name}}</div> | |
</div> | |
</div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment