Skip to content

Commit

Permalink
jobs fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
codecalm committed Oct 10, 2022
1 parent 592eca2 commit ca1c6f2
Showing 1 changed file with 15 additions and 4 deletions.
19 changes: 15 additions & 4 deletions src/pages/job-listing.html
Expand Up @@ -12,7 +12,7 @@
<div class="col-3">
<form action="./" method="get" autocomplete="off" novalidate class="sticky-top">

<div class="subheader mb-2">Job Types</div>
<div class="form-label">Job Types</div>
<div class="mb-4">
{% for type in types %}
<label class="form-check">
Expand All @@ -22,12 +22,12 @@
{% endfor %}
</div>

<div class="subheader mb-2">Remote</div>
<div class="form-label">Remote</div>
<div class="mb-4">
{% include ui/form/check.html switch=true title-on="On" title-off="Off" %}
</div>

<div class="subheader mb-2">Salary Range</div>
<div class="form-label">Salary Range</div>
<div class="mb-4">
{% for salary in salaries %}
<label class="form-check">
Expand All @@ -37,13 +37,24 @@
{% endfor %}
</div>

<div class="subheader mb-2">Immigration</div>
<div class="form-label">Immigration</div>
<div class="mb-4">
{% include ui/form/check.html switch=true title-on="On" title-off="Off" %}

<div class="small text-muted">Only show companies that can sponsor a visa</div>
</div>

<div class="form-label">Location</div>
<div class="mb-4">
<select class="form-select">
<option>Anywhere</option>
<option>London</option>
<option>San Francisco</option>
<option>New York</option>
<option>Berlin</option>
</select>
</div>

<div class="mt-5">
<button class="btn btn-primary w-100">
Confirm changes
Expand Down

0 comments on commit ca1c6f2

Please sign in to comment.