select_files.html 850 B

1234567891011121314151617181920
  1. {% extends "layout.html" %}
  2. {% block body %}
  3. <form action="{{ url_for('predict') }}" method="POST"
  4. enctype="multipart/form-data">
  5. <div class="form-group">
  6. <label for="fileupload">Select Files:</label>
  7. <input type="file" name="file[]" multiple="" id='fileupload'>
  8. <p class="help-block">Image types only. Image will be converted to
  9. proper shape.<br/>Also allow for time for image upload and predictions.
  10. </p>
  11. <label class="btn btn-primary">
  12. Upload <input type="submit" value="Upload" style="display:
  13. none;">
  14. </label>
  15. </div>
  16. </form>
  17. {% endblock %}
  18. {% block nav_buttons %}
  19. <a class="btn btn-default navbar-btn" href='{{ url_for('index')}}'>Start Over</a>
  20. {% endblock %}