2019-03-11 20:47:50 +01:00
|
|
|
- content_for :header_tags do
|
|
|
|
%meta{ name: 'robots', content: 'noindex' }/
|
|
|
|
|
2018-08-18 03:03:12 +02:00
|
|
|
.form-container
|
|
|
|
.follow-prompt
|
2019-01-07 15:36:26 +01:00
|
|
|
%h2= t("remote_interaction.#{@interaction_type}.prompt")
|
2018-08-18 03:03:12 +02:00
|
|
|
|
|
|
|
.public-layout
|
|
|
|
.activity-stream.activity-stream--highlighted
|
2019-07-07 16:16:51 +02:00
|
|
|
= render 'statuses/status', status: @status
|
2018-08-18 03:03:12 +02:00
|
|
|
|
|
|
|
= simple_form_for @remote_follow, as: :remote_follow, url: remote_interaction_path(@status) do |f|
|
|
|
|
= render 'shared/error_messages', object: @remote_follow
|
|
|
|
|
2019-01-07 15:36:26 +01:00
|
|
|
= hidden_field_tag :type, @interaction_type
|
|
|
|
|
2018-08-18 03:03:12 +02:00
|
|
|
= f.input :acct, placeholder: t('remote_follow.acct'), input_html: { autocapitalize: 'none', autocorrect: 'off' }
|
|
|
|
|
|
|
|
.actions
|
2019-01-07 15:36:26 +01:00
|
|
|
= f.button :button, t("remote_interaction.#{@interaction_type}.proceed"), type: :submit
|
2018-08-18 03:03:12 +02:00
|
|
|
|
2019-01-07 15:36:26 +01:00
|
|
|
%p.hint.subtle-hint
|
|
|
|
= t('remote_follow.reason_html', instance: site_hostname)
|
2019-03-14 05:28:30 +01:00
|
|
|
= t('remote_follow.no_account_html', sign_up_path: available_sign_up_path)
|