Blame view
resources/views/modals/send_employer.blade.php
3.95 KB
b6103c749 Обновление js и c... |
1 2 3 4 5 6 7 8 9 10 11 12 |
<script> console.log('Сообщение работнику'); $(document).on('change', '#btn_send_file', function() { var send_name = $('#send_name'); var send_name_val = send_name.val(); var this_final_name = $('#this_final_name'); console.log(send_name_val); this_final_name.html(send_name_val); }); </script> |
a9dfa8c95 Обновление на 7 м... |
13 |
<div id="send2" class="modal"> |
a13ce8670 Обновление проект... |
14 |
<div class="modal__body"> |
a9dfa8c95 Обновление на 7 м... |
15 16 |
<div class="modal__title">Отправить сообщение соискателю</div> <div class="modal__text">Если у вас есть предложение для соискателя, вы можете сделать предложение</div> |
b6103c749 Обновление js и c... |
17 18 19 20 21 22 23 24 25 26 27 28 |
<form class="modal__form" id="form_from_emp" name="form_from_emp" enctype="multipart/form-data" action="{{ route('employer.new_message') }}" method="POST"> @csrf <div class="modal__form-item"> Отправитель сообщения: <input type="text" id="_user_id" name="_user_id" class="input" placeholder="user_id" value=""> Получатель сообщения: <input type="text" id="_to_user_id" name="_to_user_id" class="input" placeholder="to_user_id" value=""> Вакансия: <input type="text" id="_vacancy" name="_vacancy" class="input" placeholder="vacancy" value=""> </div> <div class="modal__form-item"> <input id="i1" type="text" name="title" class="input" placeholder="Тема" required> |
a13ce8670 Обновление проект... |
29 30 31 |
<label for="i1">Не заполнено поле</label> </div> <div class="modal__form-item"> |
b6103c749 Обновление js и c... |
32 |
<textarea id="i2" class="textarea" name="text" placeholder="Укажите по какому поводу вы пишите работодателю, уточните название вакансии или прикрепите ссылку на вакансию, дайте как можно больше информации. ВАЖНО не стоит писать работодателю короткий текст цитирую «Какая зарплата?, работодатель не поймет о чем речь, опишите вопрос максимально подробно»." required></textarea> |
a13ce8670 Обновление проект... |
33 34 35 36 37 |
<label for="i2">Не заполнено поле</label> </div> <div class="modal__form-item"> <div class="file"> <label class="file__input"> |
b6103c749 Обновление js и c... |
38 |
<input type="file" name="file"> |
a13ce8670 Обновление проект... |
39 |
<span class="button button_light"> |
b6103c749 Обновление js и c... |
40 41 42 43 44 |
<svg> <use xlink:href="{{ asset('images/sprite.svg#share') }}"></use> </svg> Прикрепить резюме </span> |
a13ce8670 Обновление проект... |
45 |
</label> |
b6103c749 Обновление js и c... |
46 |
|
a13ce8670 Обновление проект... |
47 48 49 50 |
<div class="file__list"> <div class="file__list-item"> <div class="file__list-item-left"> <svg> |
b6103c749 Обновление js и c... |
51 |
<use xlink:href="{{ asset('images/sprite.svg#clip') }}"></use> |
a13ce8670 Обновление проект... |
52 |
</svg> |
b6103c749 Обновление js и c... |
53 |
<span id="this_final_name" name="this_final_name"></span> |
a13ce8670 Обновление проект... |
54 55 56 |
</div> <button type="button" class="file__list-item-right js-parent-remove"> <svg> |
b6103c749 Обновление js и c... |
57 |
<use xlink:href="{{ asset('images/sprite.svg#cross-bold') }}"></use> |
a13ce8670 Обновление проект... |
58 59 60 61 62 63 64 65 66 67 68 69 |
</svg> </button> </div> </div> </div> </div> <div class="modal__form-item"> <button type="submit" class="button">Отправить</button> </div> </form> </div> </div> |