BareGit
{% extends "layout.html" %}

{% block content %}
<section class="page-shell form-page" aria-labelledby="DeleteSeriesHeading">
    <a class="back-link" href="{{ back_url }}">← All series</a>
    <p class="eyebrow">Series administration</p>
    <h1 id="DeleteSeriesHeading">Delete {{ name }}?</h1>
    <p>Cards in this series will remain in the collection.</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 series
        </button>
    </form>
</section>
{% endblock %}