]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/about/about.component.html
Fix custom server configuration numbers
[github/Chocobozzz/PeerTube.git] / client / src / app / about / about.component.html
CommitLineData
36f9424f
C
1<div class="margin-content">
2 <div class="title-page title-page-single">
3 Welcome to the {{ instanceName }} instance
4 </div>
5
6 <div class="description">
7 <div class="section-title">Description</div>
8
9 <div [innerHTML]="descriptionHTML"></div>
10 </div>
11
12 <div class="terms">
13 <div class="section-title">Terms</div>
14
15 <div [innerHTML]="termsHTML"></div>
be1fc4bc
C
16 </div>
17
18 <div class="signup">
19 <div class="section-title">Signup</div>
20
21 <div *ngIf="isSignupAllowed">
22 User registration is allowed and
23
24 <ng-template [ngIf]="userVideoQuota !== -1">
25 this instance provides a baseline quota of {{ userVideoQuota | bytes }} space for the videos of its users.
26 </ng-template>
27
28 <ng-template [ngIf]="userVideoQuota === -1">
29 this instance provides unlimited space for the videos of its users.
30 </ng-template>
31 </div>
1869c875 32
be1fc4bc
C
33 <div *ngIf="isSignupAllowed === false">
34 User registration is currently not allowed.
1869c875 35 </div>
36f9424f 36 </div>
2b3b76ab
C
37
38 <div id="p2p-privacy">
39 <div class="section-title">P2P & Privacy</div>
40
41 <p>
42 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.
43 If you want to keep your public IP address private, please use a VPN or Tor.
44 </p>
45 </div>
36f9424f 46</div>