2020-02-28 06:52:21 -06:00
|
|
|
<ng-template #modal let-hide="close">
|
|
|
|
<div class="modal-header">
|
|
|
|
<h4 i18n class="modal-title">Settings</h4>
|
2020-03-06 09:58:55 -06:00
|
|
|
<my-global-icon iconName="cross" aria-label="Close" role="button" (click)="hide()"></my-global-icon>
|
2020-02-28 06:52:21 -06:00
|
|
|
</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>
|