]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/modal/admin-welcome-modal.component.html
Move to new documentation links
[github/Chocobozzz/PeerTube.git] / client / src / app / modal / admin-welcome-modal.component.html
CommitLineData
43d0ea7f
C
1<ng-template #modal let-hide="close">
2 <div class="modal-header">
34398be4 3 <h4 i18n class="modal-title">Welcome to PeerTube, dear administrator!</h4>
43d0ea7f
C
4 <my-global-icon iconName="cross" aria-label="Close" role="button" (click)="hide()"></my-global-icon>
5 </div>
6
7 <div class="modal-body">
8
592c735c 9 <div class="block-documentation">
592c735c 10 <div class="columns">
c5c95361
C
11 <a class="link-block" href="https://docs.joinpeertube.org/maintain/tools" target="_blank" rel="noopener noreferrer">
12 <a i18n class="link-title" href="https://docs.joinpeertube.org/maintain/tools" target="_blank" rel="noopener noreferrer">CLI
006b8392 13 documentation</a>
592c735c 14
5f697f3d 15 <div i18n>Upload or import videos, parse logs, prune storage directories, reset user password...</div>
592c735c
C
16 </a>
17
c5c95361
C
18 <a class="link-block" href="https://docs.joinpeertube.org/admin/following-instances" target="_blank" rel="noopener noreferrer">
19 <a i18n class="link-title" href="https://docs.joinpeertube.org/admin/following-instances" target="_blank" rel="noopener noreferrer">Administer
006b8392 20 documentation</a>
592c735c 21
5f697f3d 22 <div i18n>Managing users, following other instances, dealing with spammers...</div>
592c735c
C
23 </a>
24
c5c95361
C
25 <a class="link-block" href="https://docs.joinpeertube.org/use/setup-account" target="_blank" rel="noopener noreferrer">
26 <a i18n class="link-title" href="https://docs.joinpeertube.org/use/setup-account" target="_blank" rel="noopener noreferrer">Use
006b8392 27 documentation</a>
592c735c 28
5f697f3d 29 <div i18n>Setup your account, managing video playlists, discover third-party applications...</div>
592c735c
C
30 </a>
31 </div>
43d0ea7f
C
32 </div>
33
006b8392
C
34 <div class="two-columns">
35
80c7779e 36 <img class="mascot mascot-fw" src="/client/assets/images/mascot/pointing.svg" alt="mascot">
43d0ea7f 37
006b8392
C
38 <div class="block-links">
39 <div i18n class="subtitle">Useful links</div>
43d0ea7f 40
006b8392 41 <ul>
5f697f3d 42 <li i18n>Official PeerTube website (news, support, contribute...): <a href="https://joinpeertube.org" target="_blank"
006b8392 43 rel="noopener noreferrer">https://joinpeertube.org</a></li>
43d0ea7f 44
5f697f3d 45 <li i18n>Put your instance on the public PeerTube index: <a href="https://instances.joinpeertube.org/instances">https://instances.joinpeertube.org/instances</a>
006b8392
C
46 </li>
47 </ul>
43d0ea7f
C
48 </div>
49 </div>
50
006b8392 51 <div class="two-columns">
80c7779e 52 <img class="mascot" src="/client/assets/images/mascot/happy.svg" alt="mascot">
592c735c 53
006b8392
C
54 <div class="block-configuration">
55 <div i18n class="subtitle">It's time to configure your instance!</div>
56
57 <p i18n>
58 Choosing your <strong>instance name</strong>, <strong>setting up a description</strong>, specifying <strong>who you are</strong>,
0cc85266 59 why <strong>you created your instance</strong> and <strong>how long</strong> you plan to <strong>maintain it</strong>
006b8392
C
60 is very important for visitors to understand on what type of instance they are.
61 </p>
62
63 <p i18n>
dc5bb5ce
RK
64 If you want to open registrations, please decide what <strong>your moderation rules</strong> and <strong>instance
65 terms of service</strong> are, as well as specify the categories and languages and your moderators speak.
66 This way, you will help users to register on <strong>the appropriate</strong> PeerTube instance.
006b8392
C
67 </p>
68 </div>
43d0ea7f
C
69 </div>
70 </div>
71
72 <div class="modal-footer inputs">
a6d5ff76 73 <input
266947e5 74 type="button" role="button" i18n-value value="Remind me later" class="peertube-button grey-button"
a6d5ff76
RK
75 (click)="hide()" (key.enter)="hide()"
76 >
77
78 <a i18n (click)="doNotOpenAgain(); hide()" (key.enter)="doNotOpenAgain(); hide()"
266947e5 79 class="peertube-button-link orange-button" href="/admin/config/edit-custom" target="_blank"
a6d5ff76 80 rel="noopener noreferrer" ngbAutofocus>
006b8392
C
81 Configure my instance
82 </a>
43d0ea7f
C
83 </div>
84
85</ng-template>