- Created 'dla-kandydata.php' template for candidates with job offers and registration options. - Developed 'dla-pracodawcy.php' template for employers detailing how Globelus works and registration for new employers. - Implemented 'advert-apply.php' for job applications, including form validation and file upload for CVs. - Added 'new-password.php' for users to set a new password with validation for password strength and matching.
32 lines
1.3 KiB
PHP
32 lines
1.3 KiB
PHP
<?
|
|
global $lang;
|
|
$countries = \front\factory\Globelus::countries();
|
|
$countries_visible = [
|
|
'- dowolny -', 'Austria', 'Belgia', 'Czechy', 'Dania', 'Finlandia', 'Francja', 'Holandia', 'Niemcy', 'Norwegia', 'Polska', 'Szwajcaria', 'Szwecja'
|
|
]
|
|
?>
|
|
<form method="GET" action="/oferty-pracy" id="simple-search">
|
|
<input type="hidden" name="filtr" value="true">
|
|
<div class="content first">
|
|
<input type="text" name="k" class="form-control" value="" placeholder="słowo kluczowe, stanowisko, miasto, pracodawca">
|
|
<select name="c2[]">
|
|
<? foreach ( $countries as $country ):?>
|
|
<? if ( !in_array( $country['name'], $countries_visible ) ) continue;?>
|
|
<option value="<?= $country['id']; ?>"><?= $country['name'];?></option>
|
|
<? endforeach;?>
|
|
</select>
|
|
<a class="btn btn-success" onclick="$( '#simple-search' ).submit(); return false;"><i class="fa fa-search"></i><?= $lang['szukaj-pracy'];?></a>
|
|
</div>
|
|
<div class="content">
|
|
<div class="row checkboxes">
|
|
<div class="col-12 col-md-6">
|
|
<input type="checkbox" class="checkbox-white" name="wl" /> bez znajomości języka obcego
|
|
</div>
|
|
<div class="col-12 col-md-6">
|
|
<input type="checkbox" class="checkbox-white" name="we" /> bez doświadczenia
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
|