43 lines
1.8 KiB
Plaintext
43 lines
1.8 KiB
Plaintext
|
<style type="text/css">
|
||
|
.adv-search-bar{
|
||
|
padding: 20px;
|
||
|
}
|
||
|
</style>
|
||
|
<div class="modal-header">
|
||
|
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
|
||
|
<h4 class="modal-title" id="myModalLabel"><%= t("recruitment.advanced_search") %></h4>
|
||
|
</div>
|
||
|
<div class="modal-body">
|
||
|
<form id="advancedSearchForm" action="" class="form-horizontal">
|
||
|
<div class="form-group adv-search-bar">
|
||
|
<input type="text" class="form-control" name="q" placeholder="Desgination, Skills, Company Name"">
|
||
|
</div>
|
||
|
<div class="form-group">
|
||
|
<label for="experience" class="col-sm-3 control-label"><%= t("recruitment.experience_title") %></label>
|
||
|
<div class="col-sm-9">
|
||
|
<input type="number" max="50" min="0" name="exp" class="form-control" id="experience" >
|
||
|
<div class="hint">Please input 0 for freshers.</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
<div class="form-group">
|
||
|
<label for="industry" class="col-sm-3 control-label"><%= t("recruitment.industries") %></label>
|
||
|
<div class="col-sm-9">
|
||
|
<%= select_tag "industry", options_for_select(@industries), :prompt => "Please Select", :class => "form-control" %>
|
||
|
</div>
|
||
|
</div>
|
||
|
<div class="form-group">
|
||
|
<label for="category" class="col-sm-3 control-label"><%= t("recruitment.categories") %></label>
|
||
|
<div class="col-sm-9">
|
||
|
<%= select_tag "category", options_for_select(@categories), :prompt => "Please Select", :class => "form-control" %>
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
<div class="form-group">
|
||
|
<label for="location" class="col-sm-3 control-label"><%= t("recruitment.location") %></label>
|
||
|
<div class="col-sm-9">
|
||
|
<%= select_tag "location", options_for_select(@locations), :prompt => "Please Select", :class => "form-control" %>
|
||
|
</div>
|
||
|
</div>
|
||
|
<input type="hidden" name="type" value="aq">
|
||
|
</form>
|
||
|
</div>
|