]> BookStack Code Mirror - bookstack/commitdiff
Updated guest page-create intermediate page
authorDan Brown <redacted>
Sat, 13 Apr 2019 10:30:19 +0000 (11:30 +0100)
committerDan Brown <redacted>
Sat, 13 Apr 2019 10:30:19 +0000 (11:30 +0100)
resources/views/pages/guest-create.blade.php

index 39bd059ab57a152cfb36e34b37020b68fc395eb2..4650f3a1c1377808f6e09357a5c2523b37f01b13 100644 (file)
@@ -1,27 +1,37 @@
-@extends('base')
+@extends('simple-layout')
 
-{{--TODO - Check design of this view--}}
-
-@section('content')
+@section('body')
 
     <div class="container small">
-        <h1>{{ trans('entities.pages_new') }}</h1>
-        <form action="{{  $parent->getUrl('/create-guest-page') }}" method="POST">
-
-            {!! csrf_field() !!}
-
-            <div class="form-group title-input">
-                <label for="name">{{ trans('entities.pages_name') }}</label>
-                @include('form.text', ['name' => 'name'])
-            </div>
 
-            <div class="form-group">
-                <a href="{{ $parent->getUrl() }}" class="button outline">{{ trans('common.cancel') }}</a>
-                <button type="submit" class="button primary">{{ trans('common.continue') }}</button>
-            </div>
-
-        </form>
+        <div class="my-s">
+            @include('partials.breadcrumbs', ['crumbs' => [
+                ($parent->isA('chapter') ? $parent->book : null),
+                $parent,
+                $parent->getUrl('/create-page') => [
+                    'text' => trans('entities.pages_new'),
+                    'icon' => 'add',
+                ]
+            ]])
+        </div>
+
+        <div class="card content-wrap">
+            <h1 class="list-heading">{{ trans('entities.pages_new') }}</h1>
+            <form action="{{  $parent->getUrl('/create-guest-page') }}" method="POST">
+                {!! csrf_field() !!}
+
+                <div class="form-group title-input">
+                    <label for="name">{{ trans('entities.pages_name') }}</label>
+                    @include('form.text', ['name' => 'name'])
+                </div>
+
+                <div class="form-group text-right">
+                    <a href="{{ $parent->getUrl() }}" class="button outline">{{ trans('common.cancel') }}</a>
+                    <button type="submit" class="button primary">{{ trans('common.continue') }}</button>
+                </div>
+
+            </form>
+        </div>
     </div>
 
-
 @stop
\ No newline at end of file