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 | 19 |
1 files changed, 19 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..8ee83e7dc --- /dev/null +++ b/client/src/app/modal/quick-settings-modal.component.html | |||
@@ -0,0 +1,19 @@ | |||
1 | <ng-template #modal let-hide="close"> | ||
2 | <div class="modal-header"> | ||
3 | <h4 i18n class="modal-title">Settings</h4> | ||
4 | </div> | ||
5 | |||
6 | <div class="modal-body"> | ||
7 | <div i18n class="mb-4 quick-settings-title">Display settings</div> | ||
8 | |||
9 | <my-account-video-settings *ngIf="!isUserLoggedIn()" [user]="user" [userInformationLoaded]="userInformationLoaded" [reactiveUpdate]="true" [notifyOnUpdate]="true"> | ||
10 | <ng-container ngProjectAs="inner-title"> | ||
11 | <div i18n class="mb-4 mt-4 quick-settings-title">Video settings</div> | ||
12 | </ng-container> | ||
13 | </my-account-video-settings> | ||
14 | |||
15 | <div i18n class="mb-4 mt-4 quick-settings-title">Interface settings</div> | ||
16 | |||
17 | <my-account-interface-settings *ngIf="!isUserLoggedIn()" [user]="user" [userInformationLoaded]="userInformationLoaded" [reactiveUpdate]="true" [notifyOnUpdate]="true"></my-account-interface-settings> | ||
18 | </div> | ||
19 | </ng-template> | ||