Websites/app/views/yiff_rest/api_v2/images/convert.html.erb

20 lines
747 B
Plaintext
Raw Normal View History

<% content_for(:page_title) do %>
YiffyAPI - Convert Image
<% end %>
<%= render "yiff_rest/api_v2/manage/nav" %>
2024-10-24 07:24:57 +00:00
<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>
2024-10-24 07:24:57 +00:00
<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>