{% extends "layout.html" %}
{% block content %}
<section class="page-shell form-page" aria-labelledby="DeleteCardHeading">
<a class="back-link" href="{{ back_url }}">← Card details</a>
<p class="eyebrow">Card administration</p>
<h1 id="DeleteCardHeading">Delete {{ name }}?</h1>
<p>This permanently removes the card and its published images.</p>
<form class="standalone-form" method="post" action="{{ action_url }}">
<input type="hidden" name="csrf_token" value="{{ csrf_token }}">
<button class="form-submit destructive-submit" type="submit">
Delete card
</button>
</form>
</section>
{% endblock %}