Commit 947d970adba39f090087ff5244ffbb6909223991
1 parent
f9f2078d8c
Exists in
master
fixes
Showing 6 changed files with 21 additions and 10 deletions Side-by-side Diff
public/css/style_may2024.css
resources/views/js/modals.blade.php
... | ... | @@ -103,7 +103,7 @@ |
103 | 103 | $('#messages_error_reg').html(''); |
104 | 104 | |
105 | 105 | $.fancybox.open({ |
106 | - src: '#successful-registration', | |
106 | + src: '#successful-registration-worker', | |
107 | 107 | type: 'inline', |
108 | 108 | opts: {touch: false} |
109 | 109 | }); |
... | ... | @@ -127,7 +127,7 @@ |
127 | 127 | $('#messages_error_reg').html(''); |
128 | 128 | |
129 | 129 | $.fancybox.open({ |
130 | - src: '#successful-registration', | |
130 | + src: '#successful-registration-employer', | |
131 | 131 | type: 'inline', |
132 | 132 | opts: {touch: false} |
133 | 133 | }); |
... | ... | @@ -220,7 +220,6 @@ |
220 | 220 | "&telephone="+telephone+"&job_titles="+job_titles+"&surname="+surname+"&name_man="+name_man+ |
221 | 221 | "&surname2="+surname2+"&subscribe_email="+login, |
222 | 222 | success: function (data) { |
223 | - console.log('Вход в систему'); | |
224 | 223 | let d = JSON.parse(data); |
225 | 224 | if (typeof d['REDIRECT'] !== "undefined") { |
226 | 225 | successfulRegistrationWorker() |
resources/views/modals/register.blade.php
resources/views/modals/successful_registration.blade.php
... | ... | @@ -1,6 +0,0 @@ |
1 | -<div id="successful-registration" class="modal modal_bg" style="display: none;"> | |
2 | - <div class="modal__body"> | |
3 | - <div class="modal__title">Регистрация прошла успешно!</div> | |
4 | - <div class="modal__text">На вашу электронную почту отправлено письмо, пожалуйста подтвердите регистрацию перейдя по ссылке.</div> | |
5 | - </div> | |
6 | -</div> |
resources/views/modals/successful_registration_employer.blade.php
resources/views/modals/successful_registration_worker.blade.php
... | ... | @@ -0,0 +1,6 @@ |
1 | +<div id="successful-registration-worker" class="modal modal_bg" style="display: none;"> | |
2 | + <div class="modal__body"> | |
3 | + <div class="modal__title">Регистрация прошла успешно!</div> | |
4 | + <div class="modal__text">На вашу электронную почту отправлено письмо, пожалуйста подтвердите регистрацию перейдя по ссылке.</div> | |
5 | + </div> | |
6 | +</div> |