]>
BookStack Code Mirror - bookstack/blob - resources/views/users/create.blade.php
projects
/
bookstack
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Updated user interfaces for LDAP and added email from LDAP
[bookstack]
/
resources
/
views
/
users
/
create.blade.php
1
@extends('base')
2
3
4
@section('content')
5
6
<div class="container small" ng-non-bindable>
7
<h1>Create User</h1>
8
9
<form action="/users/create" method="post">
10
{!! csrf_field() !!}
11
@include('users.forms.' . $authMethod)
12
</form>
13
</div>
14
15
@stop