aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+admin/friends/friend-add/friend-add.component.html
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/app/+admin/friends/friend-add/friend-add.component.html')
-rw-r--r--client/src/app/+admin/friends/friend-add/friend-add.component.html30
1 files changed, 30 insertions, 0 deletions
diff --git a/client/src/app/+admin/friends/friend-add/friend-add.component.html b/client/src/app/+admin/friends/friend-add/friend-add.component.html
new file mode 100644
index 000000000..eebe033f9
--- /dev/null
+++ b/client/src/app/+admin/friends/friend-add/friend-add.component.html
@@ -0,0 +1,30 @@
1<h3>Make friends</h3>
2
3<div *ngIf="error" class="alert alert-danger">{{ error }}</div>
4
5<form (ngSubmit)="makeFriends()" [formGroup]="form">
6 <div class="form-group" *ngFor="let host of hosts; let id = index; trackBy:customTrackBy">
7 <label for="username">Host</label>
8
9 <div class="input-group">
10 <input
11 type="text" class="form-control" placeholder="domain.tld"
12 [id]="'host-' + id" [formControlName]="'host-' + id"
13 />
14 <span class="input-group-btn">
15 <button *ngIf="displayAddField(id)" (click)="addField()" class="btn btn-default" type="button">+</button>
16 <button *ngIf="displayRemoveField(id)" (click)="removeField(id)" class="btn btn-default" type="button">-</button>
17 </span>
18 </div>
19
20 <div [hidden]="form.controls['host-' + id].valid || form.controls['host-' + id].pristine" class="alert alert-warning">
21 It should be a valid host.
22 </div>
23 </div>
24
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
29 <input type="submit" value="Make friends" class="btn btn-default" [disabled]="!isFormValid()">
30</form>