AvocadoAmber/AvocadoEdition_Light/bbs/login.php

25 lines
514 B
PHP
Raw Normal View History

2022-09-17 20:50:50 +09:00
<?php
2024-09-23 11:10:50 +09:00
include_once "./_common.php";
2022-09-17 20:50:50 +09:00
$g5['title'] = '로그인';
2024-09-23 11:10:50 +09:00
include_once "./_head.sub.php";
2022-09-17 20:50:50 +09:00
check_url_host($url);
if ($is_member) {
2024-09-19 20:57:39 +09:00
if ($url)
goto_url($url);
else
goto_url(G5_URL);
2022-09-17 20:50:50 +09:00
}
2024-09-19 20:57:39 +09:00
$login_url = login_url($url);
$login_action_url = G5_HTTPS_BBS_URL . "/login_check.php";
2022-09-17 20:50:50 +09:00
2024-09-19 21:03:48 +09:00
$login_file = "{$member_skin_path}/login.skin.php";
2022-09-17 20:50:50 +09:00
if (!file_exists($login_file))
2024-09-19 20:57:39 +09:00
$member_skin_path = G5_SKIN_PATH . '/member/basic';
2022-09-17 20:50:50 +09:00
2024-09-19 21:03:48 +09:00
include_once "{$member_skin_path}/login.skin.php";
2024-09-23 11:10:50 +09:00
include_once "./_tail.sub.php";