socialforge/app/views/stores/_search_bar.html.erb

6 lines
306 B
Plaintext
Raw Normal View History

2014-01-17 15:05:50 +08:00
<div style="margin: 10px 5%;">
<%= form_tag( search_stores_path, method: 'post') do %>
2014-01-17 15:37:57 +08:00
<%= text_field_tag 'name', params[:name], size:"100", placeholder:'请输入要搜索的关键字', name: "name", :class => 'blueinputbar'%>
2014-01-17 15:05:50 +08:00
<%= submit_tag l(:label_search), :class => "enterprise"%>
<% end %>
</div>