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