1
0
Fork 0
upl/web/upload.tmpl

28 lines
741 B
Cheetah

{{template "head.tmpl" "Dropbox"}}
<div class="upload space-y-12 px-6 my-12">
<section class="space-y-4">
<h1 class="text-4xl font-bold text-center">Drop a file</h1>
<div class="notice-area hidden p-4 bg-red-100 text-red-700"></div>
<div class="drop-area"></div>
<div class="status-area"></div>
</section>
<section class="space-y-4">
<div class="flex items-center">
<h4 class="my-2 flex-1 text-xl font-bold">File upload history</h4>
<span>
<button
class="log-clear px-6 py-2 rounded-md bg-yellow-600 text-white hover:bg-yellow-700 focus:ring-2 focus:ring-offset-2 focus:ring-yellow-600">
Clear
</button>
</span>
</div>
<div class="log-area"></div>
</section>
</div>
{{template "foot.tmpl"}}