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.

36 lines
1.4 KiB

  1. <ion-view view-title="New Event">
  2. <ion-content>
  3. <div class="list">
  4. <label class="item item-input">
  5. <input type="text" ng-model="event.title" placeholder="Title">
  6. </label>
  7. <label class="item item-input">
  8. <textarea ng-model="event.description" placeholder="Description"></textarea>
  9. </label>
  10. <label class="item-input">
  11. <span class="input-label">{{'Date' | translate}}</span>
  12. <input ng-model="event.date" type="date" placeholder="">
  13. </label>
  14. <label class="item-input">
  15. <span class="input-label">{{'Hour' | translate}}</span>
  16. <input ng-model="event.date" type="time" placeholder="">
  17. </label>
  18. <!--<label class="item item-input item-select">
  19. <div class="input-label">
  20. Categories
  21. </div>
  22. <select>
  23. <option>Xerrada</option>
  24. <option>Esport</option>
  25. <option>Debat</option>
  26. <option>Taller</option>
  27. </select>
  28. </label>-->
  29. <div class="item">
  30. <div ng-click="postEvent()" class="button c_indigo400 item-note">
  31. Post new event!
  32. </div>
  33. </div>
  34. </div>
  35. </ion-content>
  36. </ion-view>