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

8 lines
488 B
Plaintext
Raw Normal View History

2014-01-21 16:41:23 +08:00
<div style="width: 57%;margin: 10px auto;">
2014-01-17 15:05:50 +08:00
<%= form_tag( search_stores_path, method: 'post') do %>
2014-01-21 16:41:23 +08:00
<%= text_field_tag 'name', params[:name], placeholder:'请输入要搜索的关键字', name: "name", :class => 'blueinputbar', :style => 'width:450px;'%>
&nbsp;&nbsp;
2014-01-17 15:05:50 +08:00
<%= submit_tag l(:label_search), :class => "enterprise"%>
<% end %>
2014-08-13 16:55:42 +08:00
<div class='font_lighter' style="display: inline-block; margin-top:3px;">全站文件搜索。不会搜索私有项目中的内容。</div>
2014-01-17 15:05:50 +08:00
</div>