{% set metaTitle = "No-JS uploader" %} {% set metaUrl = '/nojs' %} {% extends "_layout.njk" %} {% set maxSizeInt = config.uploads.maxSize | int %} {% set noJsMaxSizeInt = config.cloudflare.noJsMaxSize | int %} {% block stylesheets %} {{ super() }} {% endblock %} {% block content %} {{ super() }} {{ globals.name }} {{ globals.home_subtitle | safe }} Maximum total size per upload attempt is {{ noJsMaxSizeInt or maxSizeInt }} MB Files uploaded through this form will only be associated with your account if you specify your API token. {% if files -%} {% for file in files -%} {{ file.original }} {% if errorMessage -%} {{ errorMessage }} {%- endif %} {% if file.url -%} {{ file.url }} {%- endif %} {% endfor %} {%- endif %} {% set plain_links = true %} {% include "_partial/links.njk" %} {% if utils.gitHash -%} Git commit: {{ utils.gitHash }} {%- endif %} {% endblock %}
Maximum total size per upload attempt is {{ noJsMaxSizeInt or maxSizeInt }} MB
Files uploaded through this form will only be associated with your account if you specify your API token.
{{ file.original }}
{{ errorMessage }}
{{ file.url }}