Advertisement
Guest User

HTML Sample

a guest
May 4th, 2018
192
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 2.19 KB | None | 0 0
  1.       <div id="sessionpage"
  2.       v-if="session && !session.loading">
  3.  
  4.     <div id="header2">
  5.       <div id="backbuttonarea">
  6.         <b-button @click="$router.push('/relationships/' + session.relationshipid)"
  7.                  class="btn btn-primary ml-3">
  8.           <icon name="arrow-left"
  9.                scale="1"
  10.                style="margin-bottom:-2px;margin-right:10px" /> Save &amp; go Back
  11.         </b-button>
  12.       </div>
  13.       <div id="titlearea"
  14.           v-if="thecoach && thetrainee">
  15.  
  16.         <cSmallCoachCard v-if="thecoach && !thecoach.loading"
  17.                         id="coach"
  18.                         :coach="thecoach">
  19.         </cSmallCoachCard>
  20.         <img class="card-connect"
  21.             src="~@/assets/connection.png"
  22.             alt=""
  23.             width="34">
  24.         <cSmallTraineeCard v-if="thetrainee && !thetrainee.loading"
  25.                           id="trainee"
  26.                           :traineeid="relationship.traineeid"
  27.                           :trainee="thetrainee">
  28.         </cSmallTraineeCard>
  29.       </div>
  30.       <div id="invitebutton"
  31.           v-if="start">
  32.         <b-button @click="invite"
  33.                  class="btn mr-4"
  34.                  v-if="!inviteSent"
  35.                  :class="{'btn-light': !nowFlow, 'btn-dark': nowFlow, 'bg-primary': nowFlow}"
  36.                  :disabled="inviteSent">
  37.           <icon name="envelope"
  38.                class="icon"></icon>
  39.           Invite {{isCoach? 'Coachee' : 'Coach'}}</b-button>
  40.         <b-button @click="invite"
  41.                  class="btn btn-light mr-4"
  42.                  v-if="inviteSent"
  43.                  :class="{'btn-light': !nowFlow, 'btn-dark': nowFlow, 'bg-primary': nowFlow}"
  44.                  :disabled="inviteSent">
  45.           <icon name="envelope-open"
  46.                class="icon"></icon>{{isCoach? 'Coachee' : 'Coach'}} invited</b-button>
  47.       </div>
  48.     </div>
  49.  
  50.     <div id="header1">
  51.       <cSessionBar id="sessionbar"
  52.                   :session="session"
  53.                   :sessionid="sessionid"
  54.                   @nowflow="onNowFlow"
  55.                   @earlierflow="onEarlierFlow"
  56.                   @invitecoach="invite"> </cSessionBar>
  57.  
  58.     </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement