modal_collabo_profile2.html 1.57 KB
Newer Older
Kim Peace committed
1 2
<div class="modal fade profile_modal w_50" id="profileModal2" tabindex="-1" role="dialog"
  aria-labelledby="profileModal2" aria-hidden="true">
藤川諒 committed
3 4 5
  <div class="modal-dialog modal-dialog-centered" role="document">
    <div class="modal-content">
      <div class="modal-header border-0">
6
        <div class="profile_desc d-flex flex-row">
藤川諒 committed
7
          <img src="img/noImage.png" alt="プロフィール画像">
8
          <div class="profile_name"><span>プロフィール2</span></div>
藤川諒 committed
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
        </div>
        <button type="button" class="close" data-dismiss="modal" aria-label="Close">
          <span aria-hidden="true">&times;</span>
        </button>
      </div>
      <div class="modal-body">
        <p>グループ名グループ名グループ名</p>
      </div>
      <div class="modal-footer border-0 justify-content-center">
        <button type="button" class="border-0 bg_navy text_white">
          <div class="d-flex flex-column">
            <div class="img_wrap">
              <img src="icon/icon_profile_favorite.png" alt="お気に入り">
            </div>
            <span>お気に入り解除</span>
          </div>
        </button>
Kim Peace committed
26 27
        <button type="button" class="ch_host_btn border-0 bg_blue text_white" data-toggle="modal"
          data-target="#hostRequestModal" value="#profileModal2">
藤川諒 committed
28 29 30 31 32 33 34 35 36 37
          <div class="d-flex flex-column">
            <div class="img_wrap">
              <img src="icon/icon_change_host.png" alt="ホスト変更">
            </div>
            <span>ホスト変更</span>
          </div>
        </button>
      </div>
    </div>
  </div>
Kim Peace committed
38
</div>