aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/modal/quick-settings-modal.component.html
blob: e2ea51b929845a2ff1d7738f0d52aeab31da2c3d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<ng-template #modal let-hide="close">
  <div class="modal-header">
    <h4 i18n class="modal-title">Settings</h4>
    <my-global-icon iconName="cross" aria-label="Close" role="button" (click)="hide()"></my-global-icon>
  </div>
  
  <div class="modal-body">
    <div i18n class="mb-4 quick-settings-title">Display settings</div>

    <my-account-video-settings *ngIf="!isUserLoggedIn()" [user]="user" [userInformationLoaded]="userInformationLoaded" [reactiveUpdate]="true" [notifyOnUpdate]="true">
      <ng-container ngProjectAs="inner-title">
        <div i18n class="mb-4 mt-4 quick-settings-title">Video settings</div>
      </ng-container>
    </my-account-video-settings>

    <div i18n class="mb-4 mt-4 quick-settings-title">Interface settings</div>

    <my-account-interface-settings *ngIf="!isUserLoggedIn()" [user]="user" [userInformationLoaded]="userInformationLoaded" [reactiveUpdate]="true" [notifyOnUpdate]="true"></my-account-interface-settings>
  </div>
</ng-template>