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