1
1
mirror of https://github.com/renbaoshuo/S2OJ.git synced 2025-01-30 21:00:05 +00:00
2022-10-22 21:12:13 +08:00

19 lines
456 B
PHP

<?php
requireLib('bootstrap5');
requireLib('calendar_heatmap');
requirePHPLib('form');
if (!Auth::check() && UOJConfig::$data['switch']['force-login']) {
redirectToLogin();
}
if (!isNormalUser($myUser) && UOJConfig::$data['switch']['force-login']) {
become403Page();
}
?>
<?php echoUOJPageHeader('关于我') ?>
<?php uojIncludeView('user-info', array('user' => UOJContext::user(), 'is_blog_aboutme' => '')) ?>
<?php echoUOJPageFooter() ?>