diff options
-rw-r--r-- | client/src/app/+admin/friends/friend-add/friend-add.component.html | 4 |
1 files changed, 2 insertions, 2 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 index 29c045414..81d8291cd 100644 --- a/client/src/app/+admin/friends/friend-add/friend-add.component.html +++ b/client/src/app/+admin/friends/friend-add/friend-add.component.html | |||
@@ -7,11 +7,11 @@ | |||
7 | 7 | ||
8 | <form (ngSubmit)="makeFriends()" [formGroup]="form"> | 8 | <form (ngSubmit)="makeFriends()" [formGroup]="form"> |
9 | <div class="form-group" *ngFor="let host of hosts; let id = index; trackBy:customTrackBy"> | 9 | <div class="form-group" *ngFor="let host of hosts; let id = index; trackBy:customTrackBy"> |
10 | <label for="username">Host</label> | 10 | <label [for]="'host-' + id">Host (so without "http://")</label> |
11 | 11 | ||
12 | <div class="input-group"> | 12 | <div class="input-group"> |
13 | <input | 13 | <input |
14 | type="text" class="form-control" placeholder="domain.tld" | 14 | type="text" class="form-control" placeholder="example.com" |
15 | [id]="'host-' + id" [formControlName]="'host-' + id" | 15 | [id]="'host-' + id" [formControlName]="'host-' + id" |
16 | /> | 16 | /> |
17 | <span class="input-group-btn"> | 17 | <span class="input-group-btn"> |