aboutsummaryrefslogtreecommitdiff
path: root/portal-gui/templates/myrpki/xml_import.html
diff options
context:
space:
mode:
Diffstat (limited to 'portal-gui/templates/myrpki/xml_import.html')
-rw-r--r--portal-gui/templates/myrpki/xml_import.html20
1 files changed, 0 insertions, 20 deletions
diff --git a/portal-gui/templates/myrpki/xml_import.html b/portal-gui/templates/myrpki/xml_import.html
deleted file mode 100644
index e26830e3..00000000
--- a/portal-gui/templates/myrpki/xml_import.html
+++ /dev/null
@@ -1,20 +0,0 @@
-{% extends "base.html" %}
-
-{% block content %}
-<h1>Import {{ kind }}</h1>
-<p>Handle: {{ request.session.handle }}
-<p>Please select the xml file containing the identity of the <strong>{{ kind }}</strong> to import.
-{% if errors %}
-<ul>
-{% for e in errors %}
-<li>{{ e }}
-{% endfor %}
-</ul>
-{% endif %}
-
-<form enctype="multipart/form-data" action="{{ post_url }}" method="post">
-{{ form.as_p }}
-<input type="submit" value="Submit" />
-</form>
-
-{% endblock %}