diff options
Diffstat (limited to 'portal-gui/templates/myrpki/xml_import.html')
-rw-r--r-- | portal-gui/templates/myrpki/xml_import.html | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/portal-gui/templates/myrpki/xml_import.html b/portal-gui/templates/myrpki/xml_import.html new file mode 100644 index 00000000..e26830e3 --- /dev/null +++ b/portal-gui/templates/myrpki/xml_import.html @@ -0,0 +1,20 @@ +{% 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 %} |