mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
43d9d2eba7
Allows BookStack to be installed at a non-root location on a domain. Closes #40.
46 lines
1.6 KiB
PHP
46 lines
1.6 KiB
PHP
@extends('public')
|
|
|
|
@section('header-buttons')
|
|
@if(setting('registration-enabled', false))
|
|
<a href="{{ baseUrl("/register") }}"><i class="zmdi zmdi-account-add"></i>Sign up</a>
|
|
@endif
|
|
@stop
|
|
|
|
@section('content')
|
|
|
|
<div class="text-center">
|
|
<div class="center-box">
|
|
<h1>Log In</h1>
|
|
|
|
<form action="{{ baseUrl("/login") }}" method="POST" id="login-form">
|
|
{!! csrf_field() !!}
|
|
|
|
|
|
@include('auth/forms/login/' . $authMethod)
|
|
|
|
<div class="form-group">
|
|
<label for="remember" class="inline">Remember Me</label>
|
|
<input type="checkbox" id="remember" name="remember" class="toggle-switch-checkbox">
|
|
<label for="remember" class="toggle-switch"></label>
|
|
</div>
|
|
|
|
|
|
<div class="from-group">
|
|
<button class="button block pos" tabindex="3"><i class="zmdi zmdi-sign-in"></i> Sign In</button>
|
|
</div>
|
|
</form>
|
|
|
|
@if(count($socialDrivers) > 0)
|
|
<hr class="margin-top">
|
|
<h3 class="text-muted">Social Login</h3>
|
|
@if(isset($socialDrivers['google']))
|
|
<a href="{{ baseUrl("/login/service/google") }}" style="color: #DC4E41;"><i class="zmdi zmdi-google-plus-box zmdi-hc-4x"></i></a>
|
|
@endif
|
|
@if(isset($socialDrivers['github']))
|
|
<a href="{{ baseUrl("/login/service/github") }}" style="color:#444;"><i class="zmdi zmdi-github zmdi-hc-4x"></i></a>
|
|
@endif
|
|
@endif
|
|
</div>
|
|
</div>
|
|
|
|
@stop |