]> git.lizzy.rs Git - cheatdb.git/blob - app/templates/packages/delete.html
Add comment system
[cheatdb.git] / app / templates / packages / delete.html
1 {% extends "base.html" %}
2
3 {% block title %}
4         Delete | {{ package.title }}
5 {% endblock %}
6
7 {% block content %}
8         <form method="POST" action="" class="box box_grey ">
9                 <h3>Delete Package</h3>
10
11                 <div class="box-body">
12                         <p>This action can be undone by the admin, but he'll be very annoyed!</p>
13
14                         <input type="hidden" name="csrf_token" value="{{ csrf_token() }}" />
15                         <input type="submit" value="Delete" class="button-danger" />
16                 </div>
17         </form>
18 {% endblock %}