feat: add 2fa & pw component classes
This commit is contained in:
parent
8f3b790b53
commit
afa5970080
14
app/View/Components/ConfirmPassword.php
Normal file
14
app/View/Components/ConfirmPassword.php
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\View\Components;
|
||||||
|
|
||||||
|
use Illuminate\Contracts\View\View;
|
||||||
|
use Illuminate\View\Component;
|
||||||
|
|
||||||
|
class ConfirmPassword extends Component
|
||||||
|
{
|
||||||
|
public function render(): View
|
||||||
|
{
|
||||||
|
return view('components.confirm-password');
|
||||||
|
}
|
||||||
|
}
|
14
app/View/Components/ConfirmSecondFactor.php
Normal file
14
app/View/Components/ConfirmSecondFactor.php
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\View\Components;
|
||||||
|
|
||||||
|
use Illuminate\Contracts\View\View;
|
||||||
|
use Illuminate\View\Component;
|
||||||
|
|
||||||
|
class ConfirmSecondFactor extends Component
|
||||||
|
{
|
||||||
|
public function render(): View
|
||||||
|
{
|
||||||
|
return view('components.confirm-second-factor');
|
||||||
|
}
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user