Blame view

resources/views/modals/send_worker_new.blade.php 4.47 KB
7571b20fd   Андрей Ларионов   Коммит 13 марта 2024
1
2
3
4
5
6
7
8
9
10
11
  <script>
      console.log('Сообщение работнику');
      $("#form_worker" ).submit(function(event) {
          var val = $(this).val();
          var send_title = $('#send_title');
          var send_title_val = send_title.val();
  
          console.log('Click  form.');
      });
  
      $(document).on('change', '#btn_send_file', function() {
f8a3cafe5   Андрей Ларионов   диалоговые пробле...
12
13
14
          var send_name = $('#send_name');
          var send_name_val = send_name.val();
          var send_name_file = $('#send_name_file');
7571b20fd   Андрей Ларионов   Коммит 13 марта 2024
15

f8a3cafe5   Андрей Ларионов   диалоговые пробле...
16
17
          console.log(send_name_val);
          send_name_file.html(send_name_val);
7571b20fd   Андрей Ларионов   Коммит 13 марта 2024
18
19
20
21
22
  
      });
  </script>
  <div id="send" class="modal">
      <div class="modal__body">
f8a3cafe5   Андрей Ларионов   диалоговые пробле...
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
          <div class="modal__title">Отправить сообщение работодателю</div>
          <div class="modal__text">Если вы готовы владеете компитентыми навыками, напишите данному работодателю письмо</div>
          <form class="modal__form" id="form_worker" name="form_worker" enctype="multipart/form-data" action="{{ route('worker.new_message') }}" method="POST">
              @csrf
              <div class="modal__form-item">
                  Отправитель сообщения:
                  <input type="text" id="send_user_id" name="send_user_id" class="input" placeholder="user_id" value="">
                  Получатель сообщения:
                  <input type="text" id="send_to_user_id" name="send_to_user_id" class="input" placeholder="to_user_id" value="">
                  Вакансия:
                  <input type="text" id="send_vacancy" name="send_vacancy" class="input" placeholder="vacancy" value="">
              </div>
              <div class="modal__form-item send_title_div error_">
                  <input id="send_title" name="send_title" type="text" class="input" placeholder="Тема" required>
                  <label for="title">Не заполнено поле</label>
              </div>
b947a4cd5   Андрей Ларионов   Коммит суббота 2
39
              <!--<div class="modal__form-item send_title_div error_">
f8a3cafe5   Андрей Ларионов   диалоговые пробле...
40
                  <select class="js-select2" name="send_job_title_id" id="send_job_title_id">
b947a4cd5   Андрей Ларионов   Коммит суббота 2
41
42
43
44
45
                      if ($jobs->count())
                          foreach($jobs as $j)
                              <option value=" $j->id }}"> $j->name }} ( $j->id }})</option>
                          endforeach
                      endif
f8a3cafe5   Андрей Ларионов   диалоговые пробле...
46
47
                  </select>
                  <label for="title">Не заполнено поле</label>
b947a4cd5   Андрей Ларионов   Коммит суббота 2
48
              </div>-->
f8a3cafe5   Андрей Ларионов   диалоговые пробле...
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
              <div class="modal__form-item send_text_div">
                  <textarea id="i2" class="textarea" id="send_text" name="send_text" placeholder="Напишите текст с предложением  о работе" required></textarea>
                  <label for="i2">Не заполнено поле</label>
              </div>
              <div class="modal__form-item">
                  <div class="file">
                      <label class="file__input" id="btn_send_file" name="btn_send_file">
                          <input type="file" name="send_file" id="send_name">
                          <span class="button button_light">
                              <svg>
                                  <use xlink:href="{{ asset('images/sprite.svg#share') }}"></use>
                              </svg>
                              Прикрепить файл-документ
                          </span>
                      </label>
  
                      <div class="file__list" id="div_file" name="div_file">
                          <div class="file__list-item">
                              <div class="file__list-item-left">
                                  <svg>
                                      <use xlink:href="{{ asset('images/sprite.svg#clip') }}"></use>
                                  </svg>
                                  <span id="send_name_file" name="send_name_file"></span>
                              </div>
                              <button type="button" class="file__list-item-right js-parent-remove">
                                  <svg>
                                      <use xlink:href="{{ asset('images/sprite.svg#cross-bold') }}"></use>
                                  </svg>
                              </button>
                          </div>
                      </div>
                  </div>
              </div>
              <div class="modal__form-item">
                  <button type="submit" id="submit_form_worker" name="submit_form_worker" class="button">Отправить</button>
              </div>
          </form>
7571b20fd   Андрей Ларионов   Коммит 13 марта 2024
86
87
      </div>
  </div>
f8a3cafe5   Андрей Ларионов   диалоговые пробле...
88