{% extends "layout.html" %} {% from "_flashhelpers.html" import render_flashes %} {% from "_formhelpers.html" import link_button %} {% from "_navhelpers.html" import render_nav %} {% block body %}
{% if not current_user.is_anonymous() %}
{{ render_nav() }}
{% endif %}
{{ render_flashes() }}

  • Enter your name, if you would like to record it with your photos (optional).
  • Select the photos you would like to upload using the Add files button
  • Click the Start upload button to upload them or the Cancel button to remove files queued for upload
  • Once the photo uploads are complete, you can review the photos and delete them if necessary
  • Repeat the process as many times as you would like (the photos you upload will remain here for your review).


Add files...
 

{% if photos %} {% for photo in photos %} {% endfor %} {% endif %}

Notes

  • The maximum file size for uploads is 16 MB
  • Only image files (JPG, GIF, PNG) are allowed.
  • You can drag & drop files from your desktop on this webpage with Google Chrome, Mozilla Firefox and Apple Safari.
{% endblock %} {% block script %} {% endblock %}