diff options
Diffstat (limited to 'client/src/app/modal/quick-settings-modal.component.html')
-rw-r--r-- | client/src/app/modal/quick-settings-modal.component.html | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/client/src/app/modal/quick-settings-modal.component.html b/client/src/app/modal/quick-settings-modal.component.html new file mode 100644 index 000000000..e2ea51b92 --- /dev/null +++ b/client/src/app/modal/quick-settings-modal.component.html | |||
@@ -0,0 +1,20 @@ | |||
1 | <ng-template #modal let-hide="close"> | ||
2 | <div class="modal-header"> | ||
3 | <h4 i18n class="modal-title">Settings</h4> | ||
4 | <my-global-icon iconName="cross" aria-label="Close" role="button" (click)="hide()"></my-global-icon> | ||
5 | </div> | ||
6 | |||
7 | <div class="modal-body"> | ||
8 | <div i18n class="mb-4 quick-settings-title">Display settings</div> | ||
9 | |||
10 | <my-account-video-settings *ngIf="!isUserLoggedIn()" [user]="user" [userInformationLoaded]="userInformationLoaded" [reactiveUpdate]="true" [notifyOnUpdate]="true"> | ||
11 | <ng-container ngProjectAs="inner-title"> | ||
12 | <div i18n class="mb-4 mt-4 quick-settings-title">Video settings</div> | ||
13 | </ng-container> | ||
14 | </my-account-video-settings> | ||
15 | |||
16 | <div i18n class="mb-4 mt-4 quick-settings-title">Interface settings</div> | ||
17 | |||
18 | <my-account-interface-settings *ngIf="!isUserLoggedIn()" [user]="user" [userInformationLoaded]="userInformationLoaded" [reactiveUpdate]="true" [notifyOnUpdate]="true"></my-account-interface-settings> | ||
19 | </div> | ||
20 | </ng-template> | ||