]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/shared/shared-forms/input-readonly-copy.component.html
Live streaming implementation first step
[github/Chocobozzz/PeerTube.git] / client / src / app / shared / shared-forms / input-readonly-copy.component.html
CommitLineData
54e78847 1<div class="input-group input-group-sm">
c6c0fa6c 2 <input [id]="id" #urlInput (click)="urlInput.select()" type="text" class="form-control readonly" readonly [value]="value" />
3a1fed11
C
3
4 <div class="input-group-append">
7811819b 5 <button [cdkCopyToClipboard]="urlInput.value" (click)="activateCopiedMessage()" type="button" class="btn btn-outline-secondary">
3a1fed11
C
6 <span class="glyphicon glyphicon-copy"></span>
7 </button>
8 </div>
9</div>