phpldapadmin/app/Http/Controllers/Auth/LoginController.php

64 lines
1.4 KiB
PHP
Raw Normal View History

2019-05-14 07:52:49 +00:00
<?php
namespace App\Http\Controllers\Auth;
use App\Http\Controllers\Controller;
2020-08-23 01:37:08 +00:00
use App\Providers\RouteServiceProvider;
2019-05-14 07:52:49 +00:00
use Illuminate\Foundation\Auth\AuthenticatesUsers;
class LoginController extends Controller
{
/*
|--------------------------------------------------------------------------
| Login Controller
|--------------------------------------------------------------------------
|
| This controller handles authenticating users for the application and
| redirecting them to your home screen. The controller uses a trait
| to conveniently provide its functionality to your applications.
|
*/
use AuthenticatesUsers;
/**
* Where to redirect users after login.
*
* @var string
*/
2020-08-23 01:37:08 +00:00
protected $redirectTo = RouteServiceProvider::HOME;
2019-05-14 07:52:49 +00:00
/**
* Create a new controller instance.
*
* @return void
*/
public function __construct()
{
$this->middleware('guest')->except('logout');
}
2020-08-20 12:33:13 +00:00
2020-08-23 01:37:08 +00:00
/**
* Show our themed login page
*/
public function showLoginForm()
{
$login_note = '';
2020-08-20 12:33:13 +00:00
2020-08-23 01:37:08 +00:00
if (file_exists('login_note.txt'))
$login_note = file_get_contents('login_note.txt');
2020-09-05 23:46:27 +00:00
return view('architect::auth.login')->with('login_note',$login_note);
2020-08-23 01:37:08 +00:00
}
/**
* Get the login username to be used by the controller.
*
* @return string
*/
public function username()
{
return config('ldap_auth.identifiers.ldap.locate_users_by');
}
2019-05-14 07:52:49 +00:00
}