]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/+my-account/my-account-settings/my-account-settings.component.html
Merge branch 'release/4.2.0' into develop
[github/Chocobozzz/PeerTube.git] / client / src / app / +my-account / my-account-settings / my-account-settings.component.html
CommitLineData
4c8749cb 1<h1 class="visually-hidden" i18n>Settings</h1>
d473fd94 2
4c8749cb
C
3<div class="row"> <!-- preview -->
4 <div class="col-12 col-lg-4 col-xl-3"></div>
5
6 <div class="col-12 col-lg-8 col-xl-9">
cdeddff1 7 <my-actor-avatar-edit [actor]="user.account" (avatarChange)="onAvatarChange($event)" (avatarDelete)="onAvatarDelete()"></my-actor-avatar-edit>
d473fd94
RK
8 </div>
9</div>
10
4c8749cb
C
11<div class="row mt-3"> <!-- profile settings grid -->
12 <div class="col-12 col-lg-4 col-xl-3">
d473fd94 13 <h2 i18n class="account-title">PROFILE SETTINGS</h2>
482fa503
RK
14 </div>
15
4c8749cb 16 <div class="col-12 col-lg-8 col-xl-9">
2e7f2627 17 <my-user-quota [user]="user" [userInformationLoaded]="userInformationLoaded"></my-user-quota>
482fa503
RK
18
19 <my-account-profile [user]="user" [userInformationLoaded]="userInformationLoaded"></my-account-profile>
20 </div>
21</div>
2295ce6c 22
4c8749cb
C
23<div class="row mt-5"> <!-- interface grid -->
24 <div class="col-12 col-lg-4 col-xl-3">
4b57ebdf
C
25 <h2 i18n class="account-title">INTERFACE</h2>
26 </div>
27
4c8749cb 28 <div class="col-12 col-lg-8 col-xl-9">
4b57ebdf
C
29 <my-user-interface-settings [user]="user" [userInformationLoaded]="userInformationLoaded"></my-user-interface-settings>
30 </div>
31</div>
32
4c8749cb
C
33<div class="row mt-5"> <!-- video settings grid -->
34 <div class="col-12 col-lg-4 col-xl-3">
8227643b 35 <div class="anchor" id="video-settings"></div> <!-- video settings anchor -->
c9e3565d 36 <h2 i18n class="account-title">VIDEO SETTINGS</h2>
66fd1516
C
37 </div>
38
4c8749cb 39 <div class="col-12 col-lg-8 col-xl-9">
67ed6552 40 <my-user-video-settings [user]="user" [userInformationLoaded]="userInformationLoaded"></my-user-video-settings>
66fd1516 41 </div>
ce5496d6
C
42</div>
43
4c8749cb
C
44<div class="row mt-5"> <!-- notifications grid -->
45 <div class="col-12 col-lg-4 col-xl-3">
45e0d669 46 <div class="anchor" id="notifications"></div> <!-- notifications anchor -->
c9e3565d 47 <h2 i18n class="account-title">NOTIFICATIONS</h2>
482fa503 48 </div>
ed56ad11 49
4c8749cb 50 <div class="col-12 col-lg-8 col-xl-9">
482fa503
RK
51 <my-account-notification-preferences [user]="user" [userInformationLoaded]="userInformationLoaded"></my-account-notification-preferences>
52 </div>
53</div>
3caf77d3 54
4c8749cb
C
55<div class="row mt-5" *ngIf="user.pluginAuth === null"> <!-- password grid -->
56 <div class="col-12 col-lg-4 col-xl-3">
c9e3565d 57 <h2 i18n class="account-title">PASSWORD</h2>
482fa503
RK
58 </div>
59
4c8749cb 60 <div class="col-12 col-lg-8 col-xl-9">
482fa503
RK
61 <my-account-change-password></my-account-change-password>
62 </div>
63</div>
64
4c8749cb
C
65<div class="row mt-5"> <!-- email grid -->
66 <div class="col-12 col-lg-4 col-xl-3">
c9e3565d 67 <h2 i18n class="account-title">EMAIL</h2>
482fa503 68 </div>
c30745f3 69
4c8749cb 70 <div class="col-12 col-lg-8 col-xl-9">
482fa503
RK
71 <my-account-change-email></my-account-change-email>
72 </div>
73</div>
74
4c8749cb
C
75<div class="row mt-5"> <!-- danger zone grid -->
76 <div class="col-12 col-lg-4 col-xl-3">
1fe1e14c 77 <h2 i18n class="account-title account-title-danger">DANGER ZONE</h2>
482fa503 78 </div>
0ba5f5ba 79
4c8749cb 80 <div class="col-12 col-lg-8 col-xl-9">
482fa503
RK
81 <my-account-danger-zone [user]="user"></my-account-danger-zone>
82 </div>
83</div>