. */ namespace SP\Modules\Web\Controllers\Login; use SP\Core\Context\SessionUtil; use SP\Modules\Web\Controllers\ControllerBase; final class IndexController extends ControllerBase { /** * Index action */ public function indexAction(): void { SessionUtil::cleanSession(); $this->layoutHelper->getCustomLayout('index', 'login'); $this->view->assign('mailEnabled', $this->configData->isMailEnabled()); $this->prepareSignedUriOnView(); $this->view(); } }