]> BookStack Code Mirror - bookstack/blob - resources/views/settings/webhooks/delete.blade.php
Opensearch: Fixed XML declaration when php short tags enabled
[bookstack] / resources / views / settings / webhooks / delete.blade.php
1 @extends('layouts.simple')
2
3 @section('body')
4     <div class="container small">
5
6         @include('settings.parts.navbar', ['selected' => 'webhooks'])
7
8         <div class="card content-wrap auto-height">
9             <h1 class="list-heading"> {{ trans('settings.webhooks_delete') }}</h1>
10
11             <p>{{ trans('settings.webhooks_delete_warning', ['webhookName' => $webhook->name]) }}</p>
12
13
14             <form action="{{ $webhook->getUrl() }}" method="POST">
15                 {!! csrf_field() !!}
16                 {!! method_field('DELETE') !!}
17
18                 <div class="grid half v-center">
19                     <div>
20                         <p class="text-neg">
21                             <strong>{{ trans('settings.webhooks_delete_confirm') }}</strong>
22                         </p>
23                     </div>
24                     <div>
25                         <div class="form-group text-right">
26                             <a href="{{ $webhook->getUrl() }}" class="button outline">{{ trans('common.cancel') }}</a>
27                             <button type="submit" class="button">{{ trans('common.confirm') }}</button>
28                         </div>
29                     </div>
30                 </div>
31
32
33             </form>
34         </div>
35
36     </div>
37 @stop