template_my_name_card.html 1.39 KB
Newer Older
1
<div class="modal fade profile_modal" id="myNameCard" tabindex="-1" role="dialog" aria-labelledby="myNameCard" aria-hidden="true">
2
  <div class="modal-dialog modal-dialog-centered" role="document">
3 4
    <div class="modal-content-wrap d-flex align-items-center m-auto">
      <div class="modal-content">
藤川諒 committed
5
        <div class="modal-header border-0">
6 7 8
          <button type="button" class="close" data-dismiss="modal" aria-label="Close">
            <span aria-hidden="true" style="font-size:40px;">&times;</span>
          </button>
藤川諒 committed
9 10 11 12
          <div class="profile_desc d-flex flex-row">
            <img src="{{profileImage}}" onError="this.src='./img/noImage.png'">
            <div class="profile_name d-flex justify-content-center align-items-center"><span>{{name}}</span></div>
          </div>
13
        </div>
藤川諒 committed
14 15 16 17 18 19 20 21 22 23 24 25
        <div class="modal-body">
          {{#groupPathList}}
          <li><b>{{.}}</b></li>
          {{/groupPathList}}
        </div>
        <div class="modal-footer border-0 justify-content-center">
          <button type="button" class="border-0" style="width: 50%">
            <div class="d-flex flex-column">
              <div class="img_wrap">
                <img src="icon/icon_photo.svg" alt="プロフィール写真更新">
              </div>
              <span>プロフィール写真更新</span>
26
            </div>
藤川諒 committed
27 28
          </button>
        </div>
29 30 31 32
      </div>
    </div>
  </div>
</div>