aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/shared/user-subscription/remote-subscribe.component.html
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/app/shared/user-subscription/remote-subscribe.component.html')
-rw-r--r--client/src/app/shared/user-subscription/remote-subscribe.component.html11
1 files changed, 5 insertions, 6 deletions
diff --git a/client/src/app/shared/user-subscription/remote-subscribe.component.html b/client/src/app/shared/user-subscription/remote-subscribe.component.html
index 3762142f2..ec3636b3e 100644
--- a/client/src/app/shared/user-subscription/remote-subscribe.component.html
+++ b/client/src/app/shared/user-subscription/remote-subscribe.component.html
@@ -1,5 +1,4 @@
1<form novalidate [formGroup]="form" 1<form novalidate [formGroup]="form" (ngSubmit)="formValidated()">
2 (ngSubmit)="formValidated()">
3 <div class="form-group"> 2 <div class="form-group">
4 <input type="email" 3 <input type="email"
5 formControlName="text" 4 formControlName="text"
@@ -7,17 +6,17 @@
7 (keyup.control.enter)="onValidKey()" (keyup.meta.enter)="onValidKey()" 6 (keyup.control.enter)="onValidKey()" (keyup.meta.enter)="onValidKey()"
8 placeholder="jane_doe@example.com"> 7 placeholder="jane_doe@example.com">
9 </div> 8 </div>
10 <button type="submit" 9
11 [disabled]="!form.valid" 10 <button type="submit" [disabled]="!form.valid" class="btn btn-sm btn-remote-follow" i18n>
12 class="btn btn-sm btn-remote-follow"
13 i18n>
14 <span *ngIf="!interact">Remote subscribe</span> 11 <span *ngIf="!interact">Remote subscribe</span>
15 <span *ngIf="interact">Remote interact</span> 12 <span *ngIf="interact">Remote interact</span>
16 </button> 13 </button>
14
17 <my-help *ngIf="!interact && showHelp" 15 <my-help *ngIf="!interact && showHelp"
18 helpType="custom" 16 helpType="custom"
19 i18n-customHtml customHtml="You can subscribe to the channel via any ActivityPub-capable fediverse instance. For instance with Mastodon or Pleroma you can type the channel URL in the search box and subscribe there."> 17 i18n-customHtml customHtml="You can subscribe to the channel via any ActivityPub-capable fediverse instance. For instance with Mastodon or Pleroma you can type the channel URL in the search box and subscribe there.">
20 </my-help> 18 </my-help>
19
21 <my-help *ngIf="showHelp && interact" 20 <my-help *ngIf="showHelp && interact"
22 helpType="custom" 21 helpType="custom"
23 i18n-customHtml customHtml="You can interact with this via any ActivityPub-capable fediverse instance. For instance with Mastodon or Pleroma you can type the current URL in the search box and interact with it there."> 22 i18n-customHtml customHtml="You can interact with this via any ActivityPub-capable fediverse instance. For instance with Mastodon or Pleroma you can type the current URL in the search box and interact with it there.">