pleroma/lib/pleroma/web/templates/twitter_api/util/status_interact.html.eex

11 lines
433 B
Elixir

<%= if @error do %>
<h2>Error: <%= @error %></h2>
<% else %>
<h2>Interacting with <%= @nickname %>'s <%= link("status", to: @status_link) %></h2>
<%= form_for @conn, Routes.util_path(@conn, :remote_subscribe), [as: "status"], fn f -> %>
<%= hidden_input f, :status_id, value: @status_id %>
<%= text_input f, :profile, placeholder: "Your account ID, e.g. lain@quitter.se" %>
<%= submit "Interact" %>
<% end %>
<% end %>