modal_collabo_change_host.html 1.03 KB
Newer Older
Kim Peace committed
1 2
<div class="modal fade change_host_modal" id="changeHostModal" tabindex="-1" role="dialog"
  aria-labelledby="changeHostModal" aria-hidden="true">
藤川諒 committed
3 4 5 6 7 8 9 10 11
  <div class="modal-dialog modal-dialog-centered" role="document">
    <div class="modal-content">
      <div class="modal-header border-0 pb-0">
        <span>ホスト変更</span>
      </div>
      <div class="modal-body">
        <p>ホスト権限を引き渡します</p>
      </div>
      <div class="modal-footer border-0 justify-content-center">
Kim Peace committed
12 13
        <button type="button" class="profile_favorite_btn bg_white border_gray text_blue" data-dismiss="modal"
          aria-label="Close">
藤川諒 committed
14 15 16 17
          <div class="d-flex flex-column">
            <span>キャンセル</span>
          </div>
        </button>
Kim Peace committed
18 19
        <button type="button" onclick="CoviewBridge.changeHostFromModal();"
          class="profile_chat_btn border-0 bg_blue text_white">
藤川諒 committed
20 21 22 23 24 25 26
          <div class="d-flex flex-column">
            <span>引き渡し</span>
          </div>
        </button>
      </div>
    </div>
  </div>
Kim Peace committed
27
</div>