Fix image header URL in advert details, update CV access message, enhance image ratio alerts in profile edit, modify registration titles and agreement checkbox behavior.

This commit is contained in:
2025-06-11 00:25:57 +02:00
parent c2a11763fc
commit 603c10f251
11 changed files with 45 additions and 19 deletions

View File

@@ -22,9 +22,7 @@ if ( !$accessToken )
</div>
</div>
<div class="mini-box">
<div class="title">
<?= $lang['konto-kandydata'];?>
</div>
<div class="title">rejestracja jako kandydat</div>
<div class="container-fluid">
<div class="row">
<div class="col-12">
@@ -65,7 +63,7 @@ if ( !$accessToken )
</div>
<div class="form-group row agremment-marketing">
<div class="col-12 col-sm-8 offset-sm-4">
<input type="checkbox" required id="agremment-marketing"> Wyrażam zgodę na kontakt mailowy i/lub telefoniczny ze strony globelus.pl
<input type="checkbox" id="agremment-marketing"> Wyrażam zgodę na kontakt mailowy i/lub telefoniczny ze strony globelus.pl
</div>
</div>
<div class="form-group row">
@@ -89,7 +87,7 @@ if ( !$accessToken )
var hash = document.URL.substr( document.URL.indexOf( '#' ) + 1 );
if ( hash === 'pracodawca' )
{
$( '#user-register .title' ).html( '<?= $lang['konto-pracodawcy'];?>' );
$( '#user-register .title' ).html( 'rejestracja jako pracodawca' );
$( '#f-user-register .agremment-profile' ).hide();
$( '#f-user-register #type' ).val( 1 );
$( '#f-user-register #agremment-profile' ).removeAttr( 'required' );
@@ -99,7 +97,7 @@ if ( !$accessToken )
{
if ( $( this ).hasClass( 'btn-firm' ) )
{
$( '#user-register .title' ).html( '<?= $lang['konto-pracodawcy'];?>' );
$( '#user-register .title' ).html( 'rejestracja jako pracodawca' );
$( '#f-user-register .agremment-profile' ).hide();
$( '#f-user-register #type' ).val( 1 );
$( '#f-user-register #agremment-profile' ).removeAttr( 'required' );
@@ -115,7 +113,7 @@ if ( !$accessToken )
if ( $( this ).hasClass( 'btn-user' ) )
{
$( '#user-register .title' ).html( '<?= $lang['konto-kandydata'];?>' );
$( '#user-register .title' ).html( 'rejestracja jako kandydat' );
$( '#f-user-register .agremment-profile' ).show();
$( '#f-user-register #type' ).val( 0 );