aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+my-account/my-account-videos/modals/live-stream-information.component.html
blob: 2e65e1de9a2dd75aa107a18f079851fc12a54334 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<ng-template #modal let-close="close" let-dismiss="dismiss">
  <div class="modal-header">
    <h4 i18n class="modal-title">Live information</h4>

    <my-global-icon iconName="cross" aria-label="Close" role="button" (click)="dismiss()"></my-global-icon>
  </div>

  <div class="modal-body">
    <div class="form-group">
      <label for="liveVideoRTMPUrl" i18n>Live RTMP Url</label>
      <my-input-readonly-copy id="liveVideoRTMPUrl" [value]="rtmpUrl"></my-input-readonly-copy>
    </div>

    <div class="form-group">
      <label for="liveVideoStreamKey" i18n>Live stream key</label>
      <my-input-readonly-copy id="liveVideoStreamKey" [value]="streamKey"></my-input-readonly-copy>

      <div class="form-group-description" i18n>⚠️ Never share your stream key with anyone.</div>
    </div>
  </div>

  <div class="modal-footer">
    <div class="form-group inputs">
      <input
        type="button" role="button" i18n-value value="Close" class="action-button action-button-cancel"
        (click)="dismiss()"
      >

      <my-edit-button
        i18n-label label="Update live settings"
        [routerLink]="[ '/videos', 'update', video.uuid ]" (click)="dismiss()"
      ></my-edit-button>
    </div>
  </div>
</ng-template>