mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
12 lines
342 B
PHP
12 lines
342 B
PHP
|
<form action="{{ url('/oidc/login') }}" method="POST" id="login-form" class="mt-l">
|
||
|
{!! csrf_field() !!}
|
||
|
|
||
|
<div>
|
||
|
<button id="oidc-login" class="button outline svg">
|
||
|
@icon('oidc')
|
||
|
<span>{{ trans('auth.log_in_with', ['socialDriver' => config('oidc.name')]) }}</span>
|
||
|
</button>
|
||
|
</div>
|
||
|
|
||
|
</form>
|