72635048c55e1d82d707f3613aed779b4a25046f
[oweals/peertube.git] / client / src / app / +admin / follows / following-add / following-add.component.html
1 <div *ngIf="error" class="alert alert-danger">{{ error }}</div>
2
3 <form (ngSubmit)="addFollowing()">
4   <div class="form-group">
5     <label i18n for="hosts">1 host (without "http://") per line</label>
6
7     <textarea
8       type="text" class="form-control" placeholder="example.com" id="hosts" name="hosts"
9       [(ngModel)]="hostsString" (ngModelChange)="onHostsChanged()" [ngClass]="{ 'input-error': hostsError }"
10     ></textarea>
11
12     <div *ngIf="hostsError" class="form-error">
13       {{ hostsError }}
14     </div>
15   </div>
16
17   <div i18n *ngIf="httpEnabled() === false"  class="alert alert-warning">
18     It seems that you are not on a HTTPS server. Your webserver needs to have TLS activated in order to follow servers.
19   </div>
20
21   <input type="submit" i18n-value value="Add following" [disabled]="hostsError || !hostsString" class="btn btn-default">
22 </form>