aboutsummaryrefslogblamecommitdiffhomepage
path: root/client/src/app/+admin/friends/friend-add/friend-add.component.html
blob: 81d8291cdadb7124d1f3fcbeb50164b3697543e2 (plain) (tree)
1
2
3
4
5
6
7
8
9

                               
 
                         
 
                                                                   
 

                                                                                                 
                                                                       
 

                                 
                                                                      






                                                                                                                             
 



                                                                                                                              
 







                                                                                                                     
<div class="row">
  <div class="content-padding">

    <h3>Make friends</h3>

    <div *ngIf="error" class="alert alert-danger">{{ error }}</div>

    <form (ngSubmit)="makeFriends()" [formGroup]="form">
      <div class="form-group"  *ngFor="let host of hosts; let id = index; trackBy:customTrackBy">
        <label [for]="'host-' + id">Host (so without "http://")</label>

        <div class="input-group">
          <input
            type="text" class="form-control" placeholder="example.com"
            [id]="'host-' + id" [formControlName]="'host-' + id"
          />
          <span class="input-group-btn">
            <button *ngIf="displayAddField(id)" (click)="addField()" class="btn btn-default" type="button">+</button>
            <button *ngIf="displayRemoveField(id)" (click)="removeField(id)" class="btn btn-default" type="button">-</button>
          </span>
        </div>

        <div [hidden]="form.controls['host-' + id].valid || form.controls['host-' + id].pristine" class="alert alert-warning">
          It should be a valid host.
        </div>
      </div>

      <div *ngIf="canMakeFriends() === false"  class="alert alert-warning">
        It seems that you are not on a HTTPS pod. Your webserver need to have TLS activated in order to make friends.
      </div>

      <input type="submit" value="Make friends" class="btn btn-default" [disabled]="!isFormValid()">
    </form>
  </div>
</div>