Created
February 24, 2019 13:26
-
-
Save yassineAlouini/78bc9b37fa170cc9142697e42f645aaa to your computer and use it in GitHub Desktop.
A simple image uploading HTML form
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<title>Upload</title> | |
<h1>Upload an image to recognize</h1> | |
<form method=post enctype=multipart/form-data action="{{url_for('upload_img')}}"> | |
<p><input type=file name=file> <input type=submit value=Upload> </p> | |
</form> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment