]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/shared/shared-video-live/live-stream-information.component.html
Add live info in watch page
[github/Chocobozzz/PeerTube.git] / client / src / app / shared / shared-video-live / live-stream-information.component.html
1 <ng-template #modal let-close="close" let-dismiss="dismiss">
2 <div class="modal-header">
3 <h4 i18n class="modal-title">Live information</h4>
4
5 <my-global-icon iconName="cross" aria-label="Close" role="button" (click)="dismiss()"></my-global-icon>
6 </div>
7
8 <div class="modal-body">
9 <div class="form-group">
10 <label for="liveVideoRTMPUrl" i18n>Live RTMP Url</label>
11 <my-input-readonly-copy id="liveVideoRTMPUrl" [value]="rtmpUrl"></my-input-readonly-copy>
12 </div>
13
14 <div class="form-group">
15 <label for="liveVideoStreamKey" i18n>Live stream key</label>
16 <my-input-readonly-copy id="liveVideoStreamKey" [value]="streamKey"></my-input-readonly-copy>
17
18 <div class="form-group-description" i18n>⚠️ Never share your stream key with anyone.</div>
19 </div>
20 </div>
21
22 <div class="modal-footer">
23 <div class="form-group inputs">
24 <input
25 type="button" role="button" i18n-value value="Close" class="action-button action-button-cancel"
26 (click)="dismiss()"
27 >
28
29 <my-edit-button
30 i18n-label label="Update live settings"
31 [routerLink]="[ '/videos', 'update', video.uuid ]" (click)="dismiss()"
32 ></my-edit-button>
33 </div>
34 </div>
35 </ng-template>