meraproject/content/admin/blocks/content.php
keboss-m 5c21d25d45 Initial commit: Merakomis portal, Docker stack and user-reader API.
Co-authored-by: Cursor <cursoragent@cursor.com>
2026-06-24 11:04:05 +03:00

16 lines
484 B
PHP

<?
use ms\ms\structure\ePages as Pages;
if(IF_AUTH){
include_once(dirname(__FILE__).'/../jade/index.php');
} else {
switch (Site::$URL[0]){
case Pages::REG : include_once(dirname(__FILE__).'/../jade/profile/reg.php'); break;
case Pages::REMIND : include_once(dirname(__FILE__).'/../jade/profile/remind.php'); break;
case Pages::AUTH :
default : include_once(dirname(__FILE__).'/../jade/profile/auth.php'); break;
}
}