Files
passport/src/templates/partials/modals/delete-link.hbs
Zoe 32628b6430
Some checks failed
Build and Push Docker Image to GHCR / build-and-push (push) Has been cancelled
V0.3.3: Even more optimization
In this realease, I have further optimized Passport. The css that
Passport now uses is entirely handrolled and build via postcss (sadly).
Several bugs have also been fixed in this release, as well as a few
performance improvements relating to the admin UI.
2025-10-04 22:39:23 -05:00

11 lines
436 B
Handlebars

<div id="link-delete-contents" class="hidden delete-modal">
<h3>Are you sure you want to delete this link?</h3>
<p>You are about to delete the link <strong id="link-name"></strong>. This action cannot be undone. Are
you sure you
want to continue?</p>
<div>
<button onclick="confirmDeleteLink()">Delete
link</button>
<button onclick="closeModal()">Cancel</button>
</div>
</div>