Files
warpbox-dev/backend/templates/pages/manage_deleted.html

17 lines
655 B
HTML
Raw Normal View History

{{define "manage_deleted.html"}}{{template "base" .}}{{end}}
{{define "content"}}
<section class="download-view" aria-labelledby="deleted-title">
<div class="card download-card">
<div class="card-content">
<div class="file-emblem" aria-hidden="true">
<svg viewBox="0 0 24 24" role="img" focusable="false"><path d="M20 6 9 17l-5-5" /></svg>
</div>
<h1 id="deleted-title">Upload deleted</h1>
<p class="download-subtitle">Box <code>{{.Data.ID}}</code> and all of its files have been removed.</p>
<a class="button button-primary button-wide" href="/">Upload another file</a>
</div>
</div>
</section>
{{end}}