{% extends "meta.html" %}
{% block content %}
<div class="row">
<section class="col-md-12">
<h3>确认操作</h3>
<p>你确定要 {{ blurb | safe }} 吗?此操作无法撤销。</p>
<form method="POST" action="{{ action }}">
{{csrf_token()}}
<button type="submit" class="btn btn-danger">
确认 {{icon('caret-right')}}
</button>
<a
href="{{ cancel }}"
class="btn btn-default"
>取消 {{icon('caret-right')}}</a>
</form>
</section>
</div>
{% endblock %}