summaryrefslogtreecommitdiff
path: root/lib/pleroma/web/templates/twitter_api/util/subscribe.html.eex
blob: a6b313d8aed26f4c1c24f9028372d0c5c2292b6e (plain)
1
2
3
4
5
6
7
8
9
10
<%= if @error do %>
  <h2>Error: <%= @error %></h2>
<% else %>
  <h2>Remotely follow <%= @nickname %></h2>
  <%= form_for @conn, Routes.util_path(@conn, :remote_subscribe), [as: "user"], fn f -> %>
  <%= hidden_input f, :nickname, value: @nickname %>
  <%= text_input f, :profile, placeholder: "Your account ID, e.g. lain@quitter.se" %>
  <%= submit "Follow" %>
  <% end %>
<% end %>