Skip to content
Snippets Groups Projects
Verified Commit 012f5f14 authored by Alex ORLUC's avatar Alex ORLUC
Browse files

add slide toggle notifications profile

parent 648f57fe
No related branches found
No related tags found
No related merge requests found
...@@ -15,7 +15,8 @@ import { ...@@ -15,7 +15,8 @@ import {
MatExpansionModule, MatExpansionModule,
MatTabsModule, MatTabsModule,
MatSliderModule, MatSliderModule,
MatSelectModule MatSelectModule,
MatSlideToggleModule
} from '@angular/material'; } from '@angular/material';
import { MatMenuModule } from '@angular/material/menu'; import { MatMenuModule } from '@angular/material/menu';
...@@ -40,7 +41,8 @@ import {DragDropModule} from '@angular/cdk/drag-drop'; ...@@ -40,7 +41,8 @@ import {DragDropModule} from '@angular/cdk/drag-drop';
MatMenuModule, MatMenuModule,
MatTabsModule, MatTabsModule,
MatSliderModule, MatSliderModule,
MatSelectModule MatSelectModule,
MatSlideToggleModule
], ],
exports: [ exports: [
MatSidenavModule, MatSidenavModule,
...@@ -59,7 +61,8 @@ import {DragDropModule} from '@angular/cdk/drag-drop'; ...@@ -59,7 +61,8 @@ import {DragDropModule} from '@angular/cdk/drag-drop';
MatMenuModule, MatMenuModule,
MatTabsModule, MatTabsModule,
MatSliderModule, MatSliderModule,
MatSelectModule MatSelectModule,
MatSlideToggleModule
] ]
}) })
export class AppMaterialModule { } export class AppMaterialModule { }
...@@ -69,6 +69,16 @@ ...@@ -69,6 +69,16 @@
</mat-tab> </mat-tab>
<mat-tab label="Préférences"> <mat-tab label="Préférences">
<div class="profile-content"> <div class="profile-content">
<div class="input-row">
<fieldset>
<legend align="left">Notifications</legend>
<div class="form-container">
<div class="form-col notification">
<mat-slide-toggle [checked]="this.profileInfo.preferences.notifications" (change)="this.profileInfo.preferences.notifications=!this.profileInfo.preferences.notifications" color="primary">Recevoir les notifications</mat-slide-toggle>
</div>
</div>
</fieldset>
</div>
<div class="input-row"> <div class="input-row">
<fieldset> <fieldset>
<legend align="left">Mode de l'annotation</legend> <legend align="left">Mode de l'annotation</legend>
......
...@@ -151,4 +151,9 @@ legend { ...@@ -151,4 +151,9 @@ legend {
.form-col { .form-col {
display:table-cell; display:table-cell;
vertical-align:middle; vertical-align:middle;
}
.notification {
text-align: left;
padding : 10px;
} }
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment