{% extends "layout.html" %} {% block script %} function onSubmit() { if (document.getElementById("uploadInput").files == undefined) { //OLD browser return true; } max_size = 200; var file = document.getElementById("uploadInput").files[0]; var size = Math.round(file.size / 1000000); if (size > max_size) { alert("The file is too big (" + size + " MB). The max upload size is " + max_size + " MB. Please Upload your file with the GNS3 GUI"); return false; } return true; } {% endblock %} {% block body %}

Select & Upload an image for GNS3

File path:
File type:

{%if files%}

Files on {{gns3_host}}

{%for file in files%}

{{file}}

{%endfor%} {%endif%} {% endblock %}