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