diff options
author | prashantsinalkar | 2019-07-16 13:30:10 +0530 |
---|---|---|
committer | prashantsinalkar | 2019-07-16 13:30:10 +0530 |
commit | d5138c4af46e9519a0c5b18ef7142ffe0a9383fa (patch) | |
tree | cbc630be80d0995ded8dfac87c1a759a2b5d3b6b | |
parent | 8e15bdb317c51c825323c3da747df4296539a779 (diff) | |
download | R_on_Cloud_Web_Interface-d5138c4af46e9519a0c5b18ef7142ffe0a9383fa.tar.gz R_on_Cloud_Web_Interface-d5138c4af46e9519a0c5b18ef7142ffe0a9383fa.tar.bz2 R_on_Cloud_Web_Interface-d5138c4af46e9519a0c5b18ef7142ffe0a9383fa.zip |
fixed upload file extention
-rw-r--r-- | static/website/templates/index.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/static/website/templates/index.html b/static/website/templates/index.html index d431a4c..d34f097 100644 --- a/static/website/templates/index.html +++ b/static/website/templates/index.html @@ -227,10 +227,10 @@ <div class="modal-header"> </div> <div class="modal-body"> -<form> - <input type="file" id="fileSelect"/> - <button id="fileuploadsubmit" type="button" >Upload</button> -</form> + <form> + <input type="file" id="fileSelect" accept="text/csv" /> + <button id="fileuploadsubmit" type="button" >Upload</button> + </form> </div> <div class="modal-footer"> <button type="button" class="btn btn-default" data-dismiss="modal">Close</button> |