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.

31 lines
895 B

  1. <ion-view view-title="Hotdog - No Hotdog App">
  2. <ion-content>
  3. <div class="row">
  4. <div class="col">
  5. <div ng-click="takePhoto()" class="button button-full">
  6. <i class="icon ion-camera"></i> Take Photo
  7. </div>
  8. </div>
  9. <div class="col">
  10. <div class="button button-full button-stable">
  11. <i class="icon ion-image"></i> From Gallery
  12. </div>
  13. </div>
  14. </div>
  15. <input type='file' file-model='img_file'>
  16. <div class="list card">
  17. <div class="item item-image">
  18. <img ng-src="{{img_file}}">
  19. </div>
  20. <div ng-click="uploadFile()" class="button button-royal" href="#">
  21. Send
  22. </div>
  23. </div>
  24. <a ng-show="response!=''" class="item item-icon-left balanced" href="#">
  25. <i class="icon ion-checkmark"></i>
  26. Is a {{response}}
  27. </a>
  28. </div>
  29. </ion-content>
  30. </ion-view>