You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

54 lines
1.9 KiB

  1. <ion-modal-view view-title="Travel">
  2. <ion-content>
  3. <h4>
  4. <img class='o-imgTitle' src="img/road.png" />
  5. New Travel {{newtravel.title}}
  6. </h4>
  7. <form class="list">
  8. <label class="item item-input">
  9. <span class="input-label"t>Title</span>
  10. <input ng-model="newtravel.title" class="positive" type="text" placeholder="">
  11. </label>
  12. <label class="item item-input">
  13. <span class="input-label">From</span>
  14. <input ng-model="newtravel.from" type="text" placeholder="">
  15. </label>
  16. <label class="item item-input">
  17. <span class="input-label">To</span>
  18. <input ng-model="newtravel.to" type="text" placeholder="">
  19. </label>
  20. <label class="item item-input">
  21. <span class="input-label">nºSeats</span>
  22. <input ng-model="newtravel.seats" type="number" placeholder="">
  23. </label>
  24. <label class="item item-input">
  25. <span class="input-label">Date</span>
  26. <input ng-model="newtravel.date" type="date" placeholder="">
  27. </label>
  28. <label class="item item-input">
  29. <span class="input-label">hour</span>
  30. <input ng-model="newtravel.date" type="time" placeholder="">
  31. </label>
  32. <label class="item item-input">
  33. <span class="input-label">phone contact</span>
  34. <input ng-model="newtravel.phone" type="number" placeholder="">
  35. </label>
  36. <label class="item item-input item-floating-label">
  37. <span class="input-label">Description</span>
  38. <input ng-model="newtravel.description" type="text" placeholder="Description">
  39. </label>
  40. <button ng-click="closeNewTravel()" class="button button-assertive">
  41. Cancel
  42. </button>
  43. <button ng-click="doNewTravel()" class="button button-calm">
  44. Create travel
  45. </button>
  46. </form>
  47. </ion-content>
  48. </ion-modal-view>