S2OJ/web/app/controllers/subdomain/blog/aboutme.php
Baoshuo c5bb4a1a67
All checks were successful
continuous-integration/drone/push Build is passing
feat: redirect to login instead of return 403
2022-10-06 20:28:43 +08:00

16 lines
327 B
PHP

<?php
requirePHPLib('form');
if (!Auth::check()) {
redirectToLogin();
}
$REQUIRE_LIB['bootstrap5'] = '';
$REQUIRE_LIB['calendar_heatmap'] = '';
?>
<?php echoUOJPageHeader('关于我') ?>
<?php uojIncludeView('user-info', array('user' => UOJContext::user(), 'is_blog_aboutme' => '')) ?>
<?php echoUOJPageFooter() ?>