]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/+videos/+video-edit/video-add.component.html
Switch examples to curl since httpie has a 512MB limit (#3012)
[github/Chocobozzz/PeerTube.git] / client / src / app / +videos / +video-edit / video-add.component.html
CommitLineData
27e1a06c 1<div class="margin-content">
cd3d847d
C
2 <div class="alert alert-warning" *ngIf="isRootUser()" i18n>
3 We recommend you to not use the <strong>root</strong> user to publish your videos, since it's the super-admin account of your instance.
4 <br />
5 Instead, <a routerLink="/admin/users">create a dedicated account</a> to upload your videos.
6 </div>
7
2e7f2627
K
8 <my-user-quota *ngIf="!isInSecondStep()" [user]="user" [userInformationLoaded]="userInformationLoaded"></my-user-quota>
9
cd3d847d 10 <div class="title-page title-page-single" *ngIf="isInSecondStep()">
541006e3 11 <ng-container *ngIf="secondStepType === 'import-url' || secondStepType === 'import-torrent'" i18n>Import {{ videoName }}</ng-container>
fbad87b0 12 <ng-container *ngIf="secondStepType === 'upload'" i18n>Upload {{ videoName }}</ng-container>
27e1a06c 13 </div>
897ec54d 14
45c6bcf3
C
15 <div ngbNav #nav="ngbNav" class="nav-tabs video-add-nav" [ngClass]="{ 'hide-nav': secondStepType !== undefined }">
16 <ng-container ngbNavItem>
17 <a ngbNavLink>
18 <span i18n>Upload a file</span>
19 </a>
897ec54d 20
45c6bcf3 21 <ng-template ngbNavContent>
7373507f 22 <my-video-upload #videoUpload (firstStepDone)="onFirstStepDone('upload', $event)" (firstStepError)="onError()"></my-video-upload>
b04eabb2 23 </ng-template>
45c6bcf3 24 </ng-container>
897ec54d 25
45c6bcf3
C
26 <ng-container ngbNavItem *ngIf="isVideoImportHttpEnabled()">
27 <a ngbNavLink>
28 <span i18n>Import with URL</span>
29 </a>
30
31 <ng-template ngbNavContent>
7373507f 32 <my-video-import-url #videoImportUrl (firstStepDone)="onFirstStepDone('import-url', $event)" (firstStepError)="onError()"></my-video-import-url>
b04eabb2 33 </ng-template>
45c6bcf3
C
34 </ng-container>
35
36 <ng-container ngbNavItem *ngIf="isVideoImportTorrentEnabled()">
37 <a ngbNavLink>
38 <span i18n>Import with torrent</span>
39 </a>
ce33919c 40
45c6bcf3 41 <ng-template ngbNavContent>
7373507f 42 <my-video-import-torrent #videoImportTorrent (firstStepDone)="onFirstStepDone('import-torrent', $event)" (firstStepError)="onError()"></my-video-import-torrent>
b04eabb2 43 </ng-template>
45c6bcf3
C
44 </ng-container>
45 </div>
46
47 <div [ngbNavOutlet]="nav"></div>
897ec54d 48</div>