1 <div class="search_forms">
2 <form method="GET" action="<%= search_path %>" class="search_form">
3 <%= link_to image_tag("directions.png", :class => "button"), directions_path, :class => "button switch_link", :title => t("site.search.get_directions_title") %>
4 <%= submit_tag t("site.search.submit_text"), :class => "float", :data => { :disable_with => false } %>
5 <div class='query_wrapper'>
6 <%= text_field_tag "query", params[:query], :placeholder => t("site.search.search"), :autofocus => autofocus, :class => "overflow" %>
7 <%= link_to t("site.search.where_am_i"), "#", :class => "describe_location", :title => t("site.search.where_am_i_title") %>
11 <form method="GET" action="<%= directions_path %>" class="directions_form">
12 <div class="header"><span class="icon close"></span></div>
15 <%= image_tag "marker-green.png", :class => "routing_marker", :data => { :type => "from" }, :draggable => "true" %>
16 <span class="force_width"><%= text_field_tag "route_from", params[:from], :placeholder => t("site.search.from") %></span>
19 <%= image_tag "marker-red.png", :class => "routing_marker", :data => { :type => "to" }, :draggable => "true" %>
20 <span class="force_width"><%= text_field_tag "route_to", params[:to], :placeholder => t("site.search.to") %></span>
23 <select class="routing_engines" name="routing_engines"></select>
24 <%= submit_tag t("site.search.submit_text"), :class => "routing_go", :data => { :disable_with => false } %>
27 <a class="reverse_directions"><%= t("site.search.reverse_directions_text") %></a>
30 <div class="loader_copy"><div class="loader"><%= image_tag "searching.gif" %></div></div>