Hi,
in app/controllers/indexController.php from line 218 to 237
$mailer=new Mailer;
if($mailer->send_mail($email,$mailtitle,$mailbody) == true){
$view_data=array("status"=>true,"user_email"=>$email);
$this->view->render("index/emailverification.php" , $view_data , "default_layout.php");
}
else{
$view_data=array("status"=>false,"user_email"=>$email);
$this->view->render("index/emailverification.php" , $view_data , "default_layout.php");
}
}
else{
$this->view->render("errors/error_general.php" ,"Email is Already Verified","default_layout.php");
}
}
else{
$this->view->render("errors/error_general.php" ,"Email is not Registered","default_layout.php");
the view is set to render using default_layout.php, but the file is not generated during Publish.
All flow as intended putting the missing file : default_layout.php in app/views/layouts duplicating main_layout.php or info_layout.php