]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/+my-account/my-account-settings/my-account-settings.component.html
Migrate to bootstrap 5
[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">
482fa503 17
2e7f2627 18 <my-user-quota [user]="user" [userInformationLoaded]="userInformationLoaded"></my-user-quota>
482fa503
RK
19
20 <my-account-profile [user]="user" [userInformationLoaded]="userInformationLoaded"></my-account-profile>
21 </div>
22</div>
2295ce6c 23
4c8749cb
C
24<div class="row mt-5"> <!-- interface grid -->
25 <div class="col-12 col-lg-4 col-xl-3">
4b57ebdf
C
26 <h2 i18n class="account-title">INTERFACE</h2>
27 </div>
28
4c8749cb 29 <div class="col-12 col-lg-8 col-xl-9">
4b57ebdf
C
30 <my-user-interface-settings [user]="user" [userInformationLoaded]="userInformationLoaded"></my-user-interface-settings>
31 </div>
32</div>
33
4c8749cb
C
34<div class="row mt-5"> <!-- video settings grid -->
35 <div class="col-12 col-lg-4 col-xl-3">
8227643b 36 <div class="anchor" id="video-settings"></div> <!-- video settings anchor -->
c9e3565d 37 <h2 i18n class="account-title">VIDEO SETTINGS</h2>
66fd1516
C
38 </div>
39
4c8749cb 40 <div class="col-12 col-lg-8 col-xl-9">
67ed6552 41 <my-user-video-settings [user]="user" [userInformationLoaded]="userInformationLoaded"></my-user-video-settings>
66fd1516 42 </div>
ce5496d6
C
43</div>
44
4c8749cb
C
45<div class="row mt-5"> <!-- notifications grid -->
46 <div class="col-12 col-lg-4 col-xl-3">
45e0d669 47 <div class="anchor" id="notifications"></div> <!-- notifications anchor -->
c9e3565d 48 <h2 i18n class="account-title">NOTIFICATIONS</h2>
482fa503 49 </div>
ed56ad11 50
4c8749cb 51 <div class="col-12 col-lg-8 col-xl-9">
482fa503
RK
52 <my-account-notification-preferences [user]="user" [userInformationLoaded]="userInformationLoaded"></my-account-notification-preferences>
53 </div>
54</div>
3caf77d3 55
4c8749cb
C
56<div class="row mt-5" *ngIf="user.pluginAuth === null"> <!-- password grid -->
57 <div class="col-12 col-lg-4 col-xl-3">
c9e3565d 58 <h2 i18n class="account-title">PASSWORD</h2>
482fa503
RK
59 </div>
60
4c8749cb 61 <div class="col-12 col-lg-8 col-xl-9">
482fa503
RK
62 <my-account-change-password></my-account-change-password>
63 </div>
64</div>
65
4c8749cb
C
66<div class="row mt-5"> <!-- email grid -->
67 <div class="col-12 col-lg-4 col-xl-3">
c9e3565d 68 <h2 i18n class="account-title">EMAIL</h2>
482fa503 69 </div>
c30745f3 70
4c8749cb 71 <div class="col-12 col-lg-8 col-xl-9">
482fa503
RK
72 <my-account-change-email></my-account-change-email>
73 </div>
74</div>
75
4c8749cb
C
76<div class="row mt-5"> <!-- danger zone grid -->
77 <div class="col-12 col-lg-4 col-xl-3">
1fe1e14c 78 <h2 i18n class="account-title account-title-danger">DANGER ZONE</h2>
482fa503 79 </div>
0ba5f5ba 80
4c8749cb 81 <div class="col-12 col-lg-8 col-xl-9">
482fa503
RK
82 <my-account-danger-zone [user]="user"></my-account-danger-zone>
83 </div>
84</div>