auth email api

This commit is contained in:
2024-12-09 14:45:44 +03:00
parent 62ed358a4b
commit cfbcb3609f
6 changed files with 76 additions and 0 deletions

View File

@ -135,6 +135,13 @@ class ModuleShopClientController extends AdminController
'subject' => "Код авторизации",
"from_name" => $_ENV['APP_NAME']
]);
$this->cgView->render('enter_code.php', ['email' => $address]);
}
public function actionCodeCheck(): void
{
Debug::dd(123);
}
}