diff options
Diffstat (limited to 'Web/Server/templates/upload.html')
-rw-r--r-- | Web/Server/templates/upload.html | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/Web/Server/templates/upload.html b/Web/Server/templates/upload.html new file mode 100644 index 0000000..38c4a09 --- /dev/null +++ b/Web/Server/templates/upload.html @@ -0,0 +1,37 @@ +<html> + <head> + <link rel="stylesheet" href="/static/Server.css"> + <script type="text/javascript" src="/static/Server.js"></script> + </head> + <body> + <title>Python Flask File Upload Example</title> + <h2>Select a file to upload</h2> + <p id = "message"> + {% with messages = get_flashed_messages() %} + {% if messages %} + <ul class=flashes> + {% for message in messages %} + <li>{{ message }}</li> + {% endfor %} + </ul> + {% endif %} + {% endwith %} + </p> + <form method="post" action="/upload" enctype="multipart/form-data"> + <dl> + <p> + <input type="file" name="file" autocomplete="off" required> + </p> + </dl> + <p> + <input type="submit" value="Submit" onclick="showLoad()"> + </p> + </form> + + {% if results %} + <form method="get" action="/results"> + <button type="submit">Download!</button> + </form> + {% endif %} + </body> +</html>
\ No newline at end of file |