]> BookStack Code Mirror - bookstack/blob - resources/views/settings/webhooks/create.blade.php
Added timeout and debugging statuses to webhooks
[bookstack] / resources / views / settings / webhooks / create.blade.php
1 @extends('layouts.simple')
2
3 @section('body')
4
5     <div class="container small">
6
7         <div class="py-m">
8             @include('settings.parts.navbar', ['selected' => 'webhooks'])
9         </div>
10
11         <div class="card content-wrap auto-height">
12             <h1 class="list-heading">{{ trans('settings.webhooks_create') }}</h1>
13
14             <form action="{{ url("/settings/webhooks/create") }}" method="POST">
15                 {!! csrf_field() !!}
16                 @include('settings.webhooks.parts.form', ['title' => trans('settings.webhooks_create')])
17
18                 <div class="form-group text-right">
19                     <a href="{{ url("/settings/webhooks") }}" class="button outline">{{ trans('common.cancel') }}</a>
20                     <button type="submit" class="button">{{ trans('settings.webhooks_save') }}</button>
21                 </div>
22             </form>
23         </div>
24
25         @include('settings.webhooks.parts.format-example')
26     </div>
27
28 @stop