aboutsummaryrefslogblamecommitdiffhomepage
path: root/client/src/app/+my-account/my-account-ownership/my-account-accept-ownership/my-account-accept-ownership.component.html
blob: 222da9542dde0b3a2521f4449593b3edb26a361e (plain) (tree)
1
2
3
4
5

                                                            
                                                      

                                                                                                           

















                                                                                                    



                                                                                                        








                                                                              
<ng-template #modal let-close="close" let-dismiss="dismiss">
  <div class="modal-header">
    <h1 i18n class="modal-title">Accept ownership</h1>

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

  <div class="modal-body" [formGroup]="form">
    <div class="form-group">
      <label i18n for="channel">Select the target channel</label>
      <select formControlName="channel" id="channel" class="peertube-select-container">
        <option></option>
        <option *ngFor="let channel of videoChannels" [value]="channel.id">{{ channel.displayName }}
        </option>
      </select>
      <div *ngIf="formErrors.channel" class="form-error">
        {{ formErrors.channel }}
      </div>
    </div>
  </div>

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

      <input
          type="submit" i18n-value value="Submit" class="action-button-submit"
          [disabled]="!form.valid"
          (click)="close()"
      >
    </div>
  </div>
</ng-template>