mirror of https://github.com/Chocobozzz/PeerTube
Add warning below live stream key field
parent
d988e9a2f8
commit
c29039e7c0
|
@ -14,6 +14,8 @@
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label for="liveVideoStreamKey" i18n>Live stream key</label>
|
<label for="liveVideoStreamKey" i18n>Live stream key</label>
|
||||||
<my-input-readonly-copy id="liveVideoStreamKey" [value]="streamKey"></my-input-readonly-copy>
|
<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>
|
</div>
|
||||||
|
|
||||||
|
|
|
@ -210,6 +210,8 @@
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label for="liveVideoStreamKey" i18n>Live stream key</label>
|
<label for="liveVideoStreamKey" i18n>Live stream key</label>
|
||||||
<my-input-readonly-copy id="liveVideoStreamKey" [value]="liveVideo.streamKey"></my-input-readonly-copy>
|
<my-input-readonly-copy id="liveVideoStreamKey" [value]="liveVideo.streamKey"></my-input-readonly-copy>
|
||||||
|
|
||||||
|
<div class="form-group-description" i18n>⚠️ Never share your stream key with anyone.</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="form-group" *ngIf="isSaveReplayEnabled()">
|
<div class="form-group" *ngIf="isSaveReplayEnabled()">
|
||||||
|
|
|
@ -323,6 +323,13 @@ table {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.form-group-description {
|
||||||
|
@extend .text-muted;
|
||||||
|
|
||||||
|
font-size: 90%;
|
||||||
|
margin-top: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
@media screen and (max-width: #{breakpoint(xxl)}) {
|
@media screen and (max-width: #{breakpoint(xxl)}) {
|
||||||
.main-col {
|
.main-col {
|
||||||
&.expanded {
|
&.expanded {
|
||||||
|
|
Loading…
Reference in New Issue