Blame view

resources/views/modals/send_worker.blade.php 4.48 KB
a9dfa8c95   Андрей Ларионов   Обновление на 7 м...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
  <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() {
  
            var send_name = $('#send_name');
            var send_name_val = send_name.val();
            var send_name_file = $('#send_name_file');
  
            console.log(send_name_val);
            send_name_file.html(send_name_val);
  
      });
  </script>
f8a3cafe5   Андрей Ларионов   диалоговые пробле...
22
  <div id="send3" class="modal">
a13ce8670   Андрей Ларионов   Обновление проект...
23
      <div class="modal__body">
a9dfa8c95   Андрей Ларионов   Обновление на 7 м...
24
25
26
27
28
29
30
31
32
33
34
35
36
37
          <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>
a13ce8670   Андрей Ларионов   Обновление проект...
38
39
                  <label for="title">Не заполнено поле</label>
              </div>
a9dfa8c95   Андрей Ларионов   Обновление на 7 м...
40
41
42
43
44
45
46
47
48
49
50
51
              <div class="modal__form-item send_title_div error_">
                  <select class="js-select2" name="send_job_title_id" id="send_job_title_id">
                      @if ($jobs->count())
                          @foreach($jobs as $j)
                              <option value="{{ $j->id }}">{{ $j->name }} ({{ $j->id }})</option>
                          @endforeach
                      @endif
                  </select>
                  <label for="title">Не заполнено поле</label>
              </div>
              <div class="modal__form-item send_text_div">
                  <textarea id="i2" class="textarea" id="send_text" name="send_text" placeholder="Напишите текст с предложением  о работе" required></textarea>
a13ce8670   Андрей Ларионов   Обновление проект...
52
53
54
55
                  <label for="i2">Не заполнено поле</label>
              </div>
              <div class="modal__form-item">
                  <div class="file">
a9dfa8c95   Андрей Ларионов   Обновление на 7 м...
56
57
                      <label class="file__input" id="btn_send_file" name="btn_send_file">
                          <input type="file" name="send_file" id="send_name">
a13ce8670   Андрей Ларионов   Обновление проект...
58
59
60
61
62
63
64
                          <span class="button button_light">
                              <svg>
                                  <use xlink:href="{{ asset('images/sprite.svg#share') }}"></use>
                              </svg>
                              Прикрепить файл-документ
                          </span>
                      </label>
a9dfa8c95   Андрей Ларионов   Обновление на 7 м...
65
                      <div class="file__list" id="div_file" name="div_file">
a13ce8670   Андрей Ларионов   Обновление проект...
66
67
68
69
70
                          <div class="file__list-item">
                              <div class="file__list-item-left">
                                  <svg>
                                      <use xlink:href="{{ asset('images/sprite.svg#clip') }}"></use>
                                  </svg>
a9dfa8c95   Андрей Ларионов   Обновление на 7 м...
71
                                  <span id="send_name_file" name="send_name_file"></span>
a13ce8670   Андрей Ларионов   Обновление проект...
72
73
74
75
76
77
78
79
80
81
82
                              </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">
a9dfa8c95   Андрей Ларионов   Обновление на 7 м...
83
                  <button type="submit" id="submit_form_worker" name="submit_form_worker" class="button">Отправить</button>
a13ce8670   Андрей Ларионов   Обновление проект...
84
85
86
87
              </div>
          </form>
      </div>
  </div>