mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
50 lines
1.7 KiB
PHP
50 lines
1.7 KiB
PHP
@extends('public')
|
|
|
|
@section('header-buttons')
|
|
<a href="{{ baseUrl("/login") }}"><i class="zmdi zmdi-sign-in"></i>{{ trans('auth.log_in') }}</a>
|
|
@stop
|
|
|
|
@section('content')
|
|
|
|
<div class="text-center">
|
|
<div class="center-box">
|
|
<h1>{{ title_case(trans('auth.sign_up')) }}</h1>
|
|
|
|
<form action="{{ baseUrl("/register") }}" method="POST">
|
|
{!! csrf_field() !!}
|
|
|
|
<div class="form-group">
|
|
<label for="email">{{ trans('auth.name') }}</label>
|
|
@include('form/text', ['name' => 'name'])
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label for="email">{{ trans('auth.email') }}</label>
|
|
@include('form/text', ['name' => 'email'])
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label for="password">{{ trans('auth.password') }}</label>
|
|
@include('form/password', ['name' => 'password', 'placeholder' => trans('auth.password_hint')])
|
|
</div>
|
|
|
|
<div class="from-group">
|
|
<button class="button block pos">{{ trans('auth.create_account') }}</button>
|
|
</div>
|
|
</form>
|
|
|
|
@if(count($socialDrivers) > 0)
|
|
<hr class="margin-top">
|
|
@foreach($socialDrivers as $driver => $name)
|
|
<a id="social-register-{{$driver}}" class="button block muted-light svg text-left" href="{{ baseUrl("/register/service/" . $driver) }}">
|
|
@icon($driver)
|
|
{{ trans('auth.sign_up_with', ['socialDriver' => $name]) }}
|
|
</a>
|
|
@endforeach
|
|
@endif
|
|
</div>
|
|
</div>
|
|
|
|
|
|
@stop
|