This repository has been archived on 2025-02-26. You can view files and clone it, but cannot push or open issues or pull requests.
szurubooru/client/html/file_dropper.tpl
2019-02-28 01:55:24 +01:00

26 lines
814 B
Smarty

<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) { %>
<div class='url-holder'>
<textarea name="url" placeholder="<%- ctx.urlPlaceholder %>" rows="5"></textarea>
<% if (ctx.lock) { %>
<button>Confirm</button>
<% } else { %>
<button>Add URL</button>
<% } %>
</div>
<% } %>
</div>