Client: explain to user we don't want scheme when making friends
This commit is contained in:
parent
8376734ee3
commit
4b5dc9f1e4
|
@ -7,11 +7,11 @@
|
||||||
|
|
||||||
<form (ngSubmit)="makeFriends()" [formGroup]="form">
|
<form (ngSubmit)="makeFriends()" [formGroup]="form">
|
||||||
<div class="form-group" *ngFor="let host of hosts; let id = index; trackBy:customTrackBy">
|
<div class="form-group" *ngFor="let host of hosts; let id = index; trackBy:customTrackBy">
|
||||||
<label for="username">Host</label>
|
<label [for]="'host-' + id">Host (so without "http://")</label>
|
||||||
|
|
||||||
<div class="input-group">
|
<div class="input-group">
|
||||||
<input
|
<input
|
||||||
type="text" class="form-control" placeholder="domain.tld"
|
type="text" class="form-control" placeholder="example.com"
|
||||||
[id]="'host-' + id" [formControlName]="'host-' + id"
|
[id]="'host-' + id" [formControlName]="'host-' + id"
|
||||||
/>
|
/>
|
||||||
<span class="input-group-btn">
|
<span class="input-group-btn">
|
||||||
|
|
Loading…
Reference in New Issue