diff options
author | Dat Nguyen <nguy2854@umn.edu> | 2019-11-21 13:45:20 -0600 |
---|---|---|
committer | Dat Nguyen <nguy2854@umn.edu> | 2019-11-21 13:45:20 -0600 |
commit | 20f9ea9141f77b3c21232efc30202408d535de18 (patch) | |
tree | 63fd03429f904a6628c7ff586c6e8cbe240132b2 /Web/Server/templates/upload.html | |
parent | Update PI.py (diff) | |
download | ee4511w-20f9ea9141f77b3c21232efc30202408d535de18.tar ee4511w-20f9ea9141f77b3c21232efc30202408d535de18.tar.gz ee4511w-20f9ea9141f77b3c21232efc30202408d535de18.tar.bz2 ee4511w-20f9ea9141f77b3c21232efc30202408d535de18.tar.lz ee4511w-20f9ea9141f77b3c21232efc30202408d535de18.tar.xz ee4511w-20f9ea9141f77b3c21232efc30202408d535de18.tar.zst ee4511w-20f9ea9141f77b3c21232efc30202408d535de18.zip |
working web stuff with running page
Diffstat (limited to 'Web/Server/templates/upload.html')
-rw-r--r-- | Web/Server/templates/upload.html | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/Web/Server/templates/upload.html b/Web/Server/templates/upload.html deleted file mode 100644 index 38c4a09..0000000 --- a/Web/Server/templates/upload.html +++ /dev/null @@ -1,37 +0,0 @@ -<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 |