Advertisement
Guest User

Untitled

a guest
Jan 23rd, 2016
210
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <ion-view view-title="Book">
  2.   <ion-content>
  3.     <div class="list">
  4.       <div class="item item-input-inset" style="background-color: #2784c9; border-top: 0px">
  5.         <label class="item-input-wrapper">
  6.           <input type="text" placeholder="What service are you after?" style="width: 100%;" ng-click="showBookingForm=true; showServiceList=true">
  7.         </label>
  8.         <button class="button button-positive button-small" ng-click="showBookingForm=false; showServiceList=false"><i class="ion-close"></i></button>
  9.       </div>
  10.  
  11.       <!-- Date, time, number of people attending -->
  12.       <div ng-hide="showBookingForm">
  13.         <label class="item item-input">
  14.           <input type="text" placeholder="Date">
  15.         </label>
  16.         <label class="item item-input">
  17.           <input type="text" placeholder="Time">
  18.         </label>
  19.         <label class="item item-input">
  20.           <input type="text" placeholder="Number of people attending">
  21.         </label>
  22.       </div>
  23.  
  24.       <!-- List of services -->
  25.       <ion-scroll direction="y">
  26.         <div ng-show="showServiceList">
  27.           <ul class="list">
  28.             <li class="item" style="line-height: 16px; padding-top: 13px; font-size: 14px;" ng-repeat="service in businessServiceList">
  29.               <p>{{service.title}}</p>
  30.             </li>
  31.             <li class="item" style="line-height: 16px; padding-top: 13px; font-size: 14px;" ng-repeat="service in businessServiceList">
  32.               <p>{{service.title}}</p>
  33.             </li>
  34.           </ul>
  35.         </div>
  36.         </<ion-scroll>
  37.     </div>
  38.   </ion-content>
  39.  
  40.   <div style="position: absolute; bottom: 0px; width: 100%;">
  41.     <div class="row">
  42.       <div class="col">
  43.         <a href="#/app/confirm/1/1" class="button button-full button-balanced" style="margin-bottom: 0px">Confirm</a>
  44.       </div>
  45.     </div>
  46.   </div>
  47. </ion-view>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement