]> BookStack Code Mirror - bookstack/blob - resources/views/pages/delete.blade.php
Found the source of the issue, not sure how to fix
[bookstack] / resources / views / pages / delete.blade.php
1 @extends('base')
2
3 @section('content')
4
5     <div class="container small" ng-non-bindable>
6         <h1>Delete Page</h1>
7         <p class="text-neg">Are you sure you want to delete this page?</p>
8
9         <form action="{{$page->getUrl()}}" method="POST">
10             {!! csrf_field() !!}
11             <input type="hidden" name="_method" value="DELETE">
12             <a href="{{$page->getUrl()}}" class="button primary">Cancel</a>
13             <button type="submit" class="button neg">Confirm</button>
14         </form>
15     </div>
16
17 @stop