]> git.lizzy.rs Git - cheatdb.git/blob - app/templates/packages/remove.html
fd20637cf4f7d1c3e0e2f386be93d6ea17cd31a7
[cheatdb.git] / app / templates / packages / remove.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>Remove Package</h3>
10
11                 <div class="box-body">
12                         <p>Deleting a package 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" name="delete" value="Delete" class="btn btn-danger" />
16                         <input type="submit" name="unapprove" value="Unapprove" class="btn btn-warning" />
17                 </div>
18         </form>
19 {% endblock %}