diff --git a/public/css/style_may2024.css b/public/css/style_may2024.css index 91ae9de..9ddfe80 100644 --- a/public/css/style_may2024.css +++ b/public/css/style_may2024.css @@ -5913,6 +5913,11 @@ h1 { -webkit-box-orient: vertical; -webkit-line-clamp: 4; } + +.news__item-text p { + word-break: break-all; +} + @media (min-width: 1280px) { .news__item-text { font-size: 16px; diff --git a/resources/views/js/modals.blade.php b/resources/views/js/modals.blade.php index 740c2d5..749d2f4 100644 --- a/resources/views/js/modals.blade.php +++ b/resources/views/js/modals.blade.php @@ -103,7 +103,7 @@ $('#messages_error_reg').html(''); $.fancybox.open({ - src: '#successful-registration', + src: '#successful-registration-worker', type: 'inline', opts: {touch: false} }); @@ -127,7 +127,7 @@ $('#messages_error_reg').html(''); $.fancybox.open({ - src: '#successful-registration', + src: '#successful-registration-employer', type: 'inline', opts: {touch: false} }); @@ -220,7 +220,6 @@ "&telephone="+telephone+"&job_titles="+job_titles+"&surname="+surname+"&name_man="+name_man+ "&surname2="+surname2+"&subscribe_email="+login, success: function (data) { - console.log('Вход в систему'); let d = JSON.parse(data); if (typeof d['REDIRECT'] !== "undefined") { successfulRegistrationWorker() diff --git a/resources/views/modals/register.blade.php b/resources/views/modals/register.blade.php index 9bfd540..9ea999c 100644 --- a/resources/views/modals/register.blade.php +++ b/resources/views/modals/register.blade.php @@ -8,7 +8,8 @@ } -@include('modals.successful_registration') +@include('modals.successful_registration_worker') +@include('modals.successful_registration_employer')