]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/shared/shared-user-subscription/remote-subscribe.component.html
Move to sass module
[github/Chocobozzz/PeerTube.git] / client / src / app / shared / shared-user-subscription / remote-subscribe.component.html
CommitLineData
39ba2e8e 1<form novalidate [formGroup]="form" (ngSubmit)="formValidated()">
9b82d49d 2 <div class="form-group mb-2">
660d11e9
RK
3 <input type="email"
4 formControlName="text"
5 class="form-control"
6 (keyup.control.enter)="onValidKey()" (keyup.meta.enter)="onValidKey()"
7 placeholder="jane_doe@example.com">
8 </div>
39ba2e8e
C
9
10 <button type="submit" [disabled]="!form.valid" class="btn btn-sm btn-remote-follow" i18n>
660d11e9
RK
11 <span *ngIf="!interact">Remote subscribe</span>
12 <span *ngIf="interact">Remote interact</span>
13 </button>
39ba2e8e 14
421d935d
C
15 <my-help *ngIf="!interact && showHelp">
16 <ng-template ptTemplate="customHtml">
17 <ng-container i18n>
d43c6b1f 18 You can subscribe to the channel via any ActivityPub-capable fediverse instance (PeerTube, Mastodon or Pleroma for example).
421d935d
C
19 </ng-container>
20 </ng-template>
660d11e9 21 </my-help>
39ba2e8e 22
421d935d
C
23 <my-help *ngIf="showHelp && interact">
24 <ng-template ptTemplate="customHtml">
25 <ng-container i18n>
d43c6b1f 26 You can interact with this via any ActivityPub-capable fediverse instance (PeerTube, Mastodon or Pleroma for example).
421d935d
C
27 </ng-container>
28 </ng-template>
660d11e9 29 </my-help>
421d935d 30</form>