<style type="text/css">
	#loader{
		display: none;
	}
</style>
<div class="container">
	<div class="row">
		<div class="col-xs-8 col-sm-8 col-md-8 col-lg-8">
			<form action="{{ resultPage }}" method="POST" role="form">
				<input type="hidden" name="search-type" value="keyword-region-search" id="search-type">

				<div class="form-group">
					<label for="Keyword">Keyword</label>
					<input type="text" name="keyword" class="form-control" id="keyword" placeholder="Enter Keyword ....">
				</div>

				<div class="form-group">
					<select name="industry" id="industry" class="form-control">
						<option value="">-- Any Sector --</option>
						{% for industry in industries %}
							<option value="{{ industry.id|e }}">{{ industry.name|e }}</option>
						{% endfor %}
					</select>
				</div>

				<div class="form-group">
					<select name="region" id="region" class="form-control">
						<option value="">-- Any Location --</option>
						{% for location in locations %}
							<optgroup label="{{ location.name }}">
								{% for region in location.regions %}
									<option value="{{ region.id|e }} ">{{ region.name|e }}</option>
								{% endfor %}
							</optgroup>
						{% endfor %}
					</select>
				</div>



				<button type="submit" class="btn btn-primary pull-right">Search</button>
			</form>
			<br/><br/>
			<label id="loader" class="pull-left"> <img src="{{ assetsUrl }}" /> Please wait while loading...</label>
		</div>
	</div>
</div>