]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/+admin/friends/friend-add/friend-add.component.html
Client: fixed header and menu
[github/Chocobozzz/PeerTube.git] / client / src / app / +admin / friends / friend-add / friend-add.component.html
CommitLineData
e105c19c
C
1<h3>Make friends</h3>
2
3<div *ngIf="error" class="alert alert-danger">{{ error }}</div>
4
4b2f33f3 5<form (ngSubmit)="makeFriends()" [formGroup]="form">
49abbbbe
C
6 <div class="form-group" *ngFor="let host of hosts; let id = index; trackBy:customTrackBy">
7 <label for="username">Host</label>
9e8aa10d 8
e105c19c 9 <div class="input-group">
9e8aa10d 10 <input
49abbbbe
C
11 type="text" class="form-control" placeholder="domain.tld"
12 [id]="'host-' + id" [formControlName]="'host-' + id"
9e8aa10d 13 />
e105c19c
C
14 <span class="input-group-btn">
15 <button *ngIf="displayAddField(id)" (click)="addField()" class="btn btn-default" type="button">+</button>
9e8aa10d 16 <button *ngIf="displayRemoveField(id)" (click)="removeField(id)" class="btn btn-default" type="button">-</button>
e105c19c
C
17 </span>
18 </div>
9e8aa10d 19
49abbbbe
C
20 <div [hidden]="form.controls['host-' + id].valid || form.controls['host-' + id].pristine" class="alert alert-warning">
21 It should be a valid host.
9e8aa10d 22 </div>
e105c19c
C
23 </div>
24
8735451a
C
25 <div *ngIf="canMakeFriends() === false" class="alert alert-warning">
26 It seems that you are not on a HTTPS pod. Your webserver need to have TLS activated in order to make friends.
27 </div>
28
9e8aa10d 29 <input type="submit" value="Make friends" class="btn btn-default" [disabled]="!isFormValid()">
e105c19c 30</form>