aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+my-account/my-account-settings/my-account-settings.component.html
blob: ff08cb7771fc33d505671ca477add55042be8b7f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<my-actor-avatar-info [actor]="user.account" (avatarChange)="onAvatarChange($event)"></my-actor-avatar-info>

<div class="user-quota">
  <span i18n class="user-quota-label">Video quota:</span> {{ userVideoQuotaUsed | bytes: 0 }} / {{ userVideoQuota }}
</div>

<ng-template [ngIf]="user && user.account">
  <div i18n class="account-title">Profile</div>
  <my-account-profile [user]="user" [userInformationLoaded]="userInformationLoaded"></my-account-profile>
</ng-template>

<div i18n class="account-title">Password</div>
<my-account-change-password></my-account-change-password>

<div i18n class="account-title">Video settings</div>
<my-account-video-settings [user]="user" [userInformationLoaded]="userInformationLoaded"></my-account-video-settings>