szurubooru/client/html/file_dropper.tpl
rr- 6ea129a9ef client/views: escape HTML
This lets client use < > in tag names.
2016-06-23 12:47:56 +02:00

12 lines
335 B
Smarty

<div class='file-dropper-holder'>
<input type='file' id='<%- ctx.id %>'/>
<label class='file-dropper' for='<%- ctx.id %>'>
<% if (ctx.allowMultiple) { %>
Drop files here!
<% } else { %>
Drop file here!
<% } %>
<br/>
Or just click on this box.
</label>
</div>