20 lines
747 B
Plaintext
20 lines
747 B
Plaintext
<% content_for(:page_title) do %>
|
|
YiffyAPI - Convert Image
|
|
<% end %>
|
|
|
|
<%= render "yiff_rest/api_v2/manage/nav" %>
|
|
|
|
<div class="w-100 d-flex" style="justify-content: space-between;">
|
|
<div style="width: 45%; margin-left: 2.5%; margin-top: 2%;">
|
|
<%= simple_form_for(:api_image, url: convert_yiff_rest_api_v2_manage_image_path(@image), method: :post) do |f| %>
|
|
<%= f.input(:external_url) %>
|
|
<%= f.button(:submit, "Convert Image", name: nil) %>
|
|
<% end %>
|
|
</div>
|
|
<div style="width: 45%; margin-right: 2.5%; margin-top: 2%;">
|
|
<%= link_to(@image.url, target: "_blank", rel: "noopener") do %>
|
|
<%= image_tag(@image.url, style: "max-width: 100%; max-height: 80vh; object-fit: contain;") %>
|
|
<% end %>
|
|
</div>
|
|
</div>
|