⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.134
Server IP:
68.65.123.197
Server:
Linux premium49.web-hosting.com 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
Server Software:
LiteSpeed
PHP Version:
8.2.29
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
smarbgfw
/
qr.smartech-hub.com
/
core
/
routes
/
View File Name :
auth.php
<?php /* Auth */ Route::get('login', 'Auth\LoginController@showLoginForm')->name('login'); Route::post('login', 'Auth\LoginController@login'); Route::post('logout', 'Auth\LoginController@logout')->name('logout'); Route::get('auth/{provider}', 'Auth\SocialLoginController@redirect')->name('social.login'); Route::get('auth/{provider}/callback', 'Auth\SocialLoginController@callback')->name('social.callback'); Route::get('password/reset', 'Auth\ForgotPasswordController@showLinkRequestForm')->name('password.request'); Route::post('password/email', 'Auth\ForgotPasswordController@sendResetLinkEmail')->name('password.email'); Route::get('password/reset/{token}', 'Auth\ResetPasswordController@showResetForm')->name('password.reset'); Route::post('password/reset', 'Auth\ResetPasswordController@reset')->name('password.update'); Route::get('email/verify/{id}/{hash}', 'Auth\VerificationController@verify')->name('verification.verify'); Route::post('email/resend', 'Auth\VerificationController@resend')->name('verification.resend'); Route::middleware(['checkRegistrationDisabled'])->group(function () { Route::get('signup', 'Auth\RegisterController@showRegistrationForm')->name('register'); Route::post('signup', 'Auth\RegisterController@register'); Route::post('signup/check_availability', 'Auth\RegisterController@checkAvailability')->name('register.check_availability'); });