Add notifications in the client
[oweals/peertube.git] / client / src / app / +my-account / my-account-settings / my-account-settings.component.html
1 <my-actor-avatar-info [actor]="user.account" (avatarChange)="onAvatarChange($event)"></my-actor-avatar-info>
2
3 <div class="user-quota">
4   <span i18n class="user-quota-label">Video quota:</span> {{ userVideoQuotaUsed | bytes: 0 }} / {{ userVideoQuota }}
5 </div>
6
7 <ng-template [ngIf]="user && user.account">
8   <div i18n class="account-title">Profile</div>
9   <my-account-profile [user]="user" [userInformationLoaded]="userInformationLoaded"></my-account-profile>
10 </ng-template>
11
12 <div i18n class="account-title" id="notifications">Notifications</div>
13 <my-account-notification-preferences [user]="user" [userInformationLoaded]="userInformationLoaded"></my-account-notification-preferences>
14
15 <div i18n class="account-title">Password</div>
16 <my-account-change-password></my-account-change-password>
17
18 <div i18n class="account-title">Video settings</div>
19 <my-account-video-settings [user]="user" [userInformationLoaded]="userInformationLoaded"></my-account-video-settings>
20
21 <div i18n class="account-title">Danger zone</div>
22 <my-account-danger-zone [user]="user"></my-account-danger-zone>