<div class='file-dropper-holder'>
    <input type='file' id='<%- ctx.id %>'/>
    <label class='file-dropper' for='<%- ctx.id %>' role='button'>
        <% if (ctx.allowMultiple) { %>
            Drop files here!
        <% } else { %>
            Drop file here!
        <% } %>
        <br/>
        Or just click on this box.
        <% if (ctx.extraText) { %>
            <br/>
            <small><%= ctx.extraText %></small>
        <% } %>
    </label>
    <% if (ctx.allowUrls) { %>
        <input type='text' name='url' placeholder='Alternatively, paste an URL here.'/>
        <% if (ctx.lock) { %>
            <button>Confirm</button>
        <% } else { %>
            <button>Add URL</button>
        <% } %>
    <% } %>
</div>