Pfingstfrosch c6073806de lel
2020-05-31 17:25:48 +02:00

14 lines
713 B
Plaintext

<h2>Search through @TU Vienna Database</h2>
<p>Just enter your search term in the form below and pick your context.</p>
<p>You press the button, we do the rest! (C) Kodak</p>
<%= form_tag(crawlers_tiss_crawler_search_path, :method => "get") do %>
<%= label_tag(:search_term, "Enter your search term") %>
<%= text_field_tag(:search_term, nil, required: true, minlength: 1, placeholder: "...") %>
<%= radio_button_tag(:search_context, 'People', true) %> People
<%= radio_button_tag(:search_context, 'Courses', false) %> Courses
<%= radio_button_tag(:search_context, 'Theses', false) %> Theses
<%= radio_button_tag(:search_context, 'Projects', false) %> Projects
<%= submit_tag("Search") %>
<% end %>