]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/shared/shared-support-modal/support-modal.component.html
Reorder playlists when adding an element
[github/Chocobozzz/PeerTube.git] / client / src / app / shared / shared-support-modal / support-modal.component.html
CommitLineData
63347a0f
C
1<ng-template #modal let-hide="close">
2 <div class="modal-header">
100d9ce2 3 <h4 i18n class="modal-title">Support {{ displayName }}</h4>
457bb213 4 <my-global-icon iconName="cross" aria-label="Close" role="button" (click)="hide()"></my-global-icon>
63347a0f 5 </div>
07fa4c97 6
100d9ce2 7 <div class="modal-body" [innerHTML]="htmlSupport"></div>
07fa4c97 8
63347a0f 9 <div class="modal-footer inputs">
a6d5ff76 10 <input
266947e5 11 type="button" role="button" i18n-value value="Maybe later" class="peertube-button grey-button"
a6d5ff76
RK
12 (click)="hide()" (key.enter)="hide()"
13 >
07fa4c97 14 </div>
63347a0f 15</ng-template>