branch
[akkoma] / lib / pleroma / web / templates / twitter_api / util / follow.html.eex
1 <%= if @error == :error do %>
2 <h2>Error fetching user</h2>
3 <% else %>
4 <h2>Remote follow</h2>
5 <img width="128" height="128" src="<%= @avatar %>">
6 <p><%= @name %></p>
7 <%= form_for @conn, util_path(@conn, :do_remote_follow), [as: "user"], fn f -> %>
8 <%= hidden_input f, :id, value: @id %>
9 <%= submit "Authorize" %>
10 <% end %>
11 <% end %>