Skip to main content

webapp/templates/index.html

1{% extends "base.html" %}
3{% block content %}
4 <p>upload an image to analyse:</p>
6 <form action="/palette" method="POST"
7 enctype="multipart/form-data">
8 <input type="file" name="file" accept=".gif,.jpg,.jpeg,.png"/>
9 <input type="submit"/>
10 </form>
11{% endblock %}