• This project
    • Loading...
  • Sign in

Зуев Егор / wiki.dev

Logo belkanton
Go to a project
Toggle navigation
Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Snippets
  • Network
  • Create a new issue
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • wiki.dev
  • resources
  • views
  • books
  • create.blade.php
  • Dan Brown's avatar
    Updated all application urls to allow path prefix. · 43d9d2eb ...
    43d9d2eb
    Allows BookStack to be installed at a non-root location on a domain.
    Closes #40.
    Dan Brown authored 2016-08-14 12:29:35 +0100
create.blade.php 228 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12
@extends('base')

@section('content')

<div class="container small" ng-non-bindable>
    <h1>Create New Book</h1>
    <form action="{{ baseUrl("/books") }}" method="POST">
        @include('books/form')
    </form>
</div>

@stop