]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/about/about.component.html
Filter by category (#720)
[github/Chocobozzz/PeerTube.git] / client / src / app / about / about.component.html
CommitLineData
36f9424f 1<div class="margin-content">
b1d40cff 2 <div i18n class="title-page title-page-single">
36f9424f
C
3 Welcome to the {{ instanceName }} instance
4 </div>
5
45c0fb35
C
6 <div class="short-description">
7 <div>{{ shortDescription }}</div>
8 </div>
9
36f9424f 10 <div class="description">
b1d40cff 11 <div i18n class="section-title">Description</div>
36f9424f
C
12
13 <div [innerHTML]="descriptionHTML"></div>
14 </div>
15
16 <div class="terms">
b1d40cff 17 <div i18n class="section-title">Terms</div>
36f9424f
C
18
19 <div [innerHTML]="termsHTML"></div>
be1fc4bc
C
20 </div>
21
22 <div class="signup">
b1d40cff 23 <div i18n class="section-title">Signup</div>
be1fc4bc
C
24
25 <div *ngIf="isSignupAllowed">
b1d40cff 26 <ng-container i18n>User registration is allowed and</ng-container>
be1fc4bc 27
b1d40cff 28 <ng-container i18n *ngIf="userVideoQuota !== -1">
d414207f 29 this instance provides a baseline quota of {{ userVideoQuota | bytes: 0 }} space for the videos of its users.
b1d40cff 30 </ng-container>
be1fc4bc 31
b1d40cff 32 <ng-container i18n *ngIf="userVideoQuota === -1">
be1fc4bc 33 this instance provides unlimited space for the videos of its users.
b1d40cff 34 </ng-container>
be1fc4bc 35 </div>
1869c875 36
b1d40cff 37 <div i18n *ngIf="isSignupAllowed === false">
be1fc4bc 38 User registration is currently not allowed.
1869c875 39 </div>
36f9424f 40 </div>
2b3b76ab
C
41
42 <div id="p2p-privacy">
b1d40cff 43 <div i18n class="section-title">P2P & Privacy</div>
2b3b76ab 44
b1d40cff 45 <p i18n>
2b3b76ab 46 PeerTube uses the BitTorrent protocol to share bandwidth between users. It implies that your public IP address is stored in the public BitTorrent tracker of the video PeerTube instance as long as you're watching the video.
6b684b61 47 If you want to keep your public IP address private, please use a VPN or the Tor Browser.
2b3b76ab
C
48 </p>
49 </div>
36f9424f 50</div>