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