Files
danbooru/app/views/iqdb_queries/show.html.erb
evazion 6a984de3d5 views: refactor page titles.
Refactor `page_title` helper to automatically include site name.
2020-01-25 01:52:18 -06:00

20 lines
657 B
Plaintext

<% page_title "Similar Images Search" %>
<div id="c-iqdb-queries">
<div id="a-check">
<h1>Similar Images Search</h1>
<section>
<p>Paste a URL or upload a file to perform a reverse image search on <%= Danbooru.config.app_name %>.</p>
<%= search_form_for(iqdb_queries_path, method: :post) do |f| %>
<%= f.input :post_id, label: "Post ID", input_html: { value: params[:search][:post_id] } %>
<%= f.input :url, input_html: { value: params[:search][:url] } %>
<%= f.input :file, as: :file %>
<%= f.submit "Search" %>
<% end %>
</section>
<%= render "iqdb_queries/matches" %>
</div>
</div>