summaryrefslogtreecommitdiffstats
path: root/templates/simpleupload.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/simpleupload.html')
-rw-r--r--templates/simpleupload.html50
1 files changed, 0 insertions, 50 deletions
diff --git a/templates/simpleupload.html b/templates/simpleupload.html
deleted file mode 100644
index d97234c..0000000
--- a/templates/simpleupload.html
+++ /dev/null
@@ -1,50 +0,0 @@
-{% extends "base.html" %}
-
-{% block title %}Simple Fileupload{% endblock %}
-
-{% block content %}
-
-<h2>Survey Scan upload into Wallet</h2>
-
-<div style = "max-width:470px; " >
-
-
-{% if filesaved %}
-<p style="margin-left:20%;">
-<b>The file was saved as <em>'{{actual_saved}}'</em> <br><br>Upload another?</b>
-</p>
-<br>
-{% endif %}
-
-
-<form method ='post' enctype ="multipart/form-data">
- {% csrf_token %}
-
-
- <br>
-
-
- <input type = "file" style = "margin-left:20%;"
- placeholder = "Simplefile" name = "simplefile" />
-
- <br> <br>
-
-
- <input type = "text" style = "margin-left:20%;"
- placeholder = "Wallet id e.g. 2021#23" name = "title" value='2021#99' label="Wallet id"/>
-
- </div>
-
- <div style = "max-width:470px;">
- <center>
-
- <button style = "color: #fff; border:1px; background-color:#999; margin-top:8%;
- height:35px; width:80%; margin-left:19%;" type = "submit" value = "Upload" >
- <strong>Upload</strong>
- </button>
-
- </center>
- </div>
-</form>
-</div>
- {% endblock %}