26 lines
536 B
PHP
26 lines
536 B
PHP
<?php
|
|
include_once "./_common.php";
|
|
$g5['title'] = '로그인';
|
|
include_once "./_head.sub.php";
|
|
|
|
$url = $_GET['url'];
|
|
|
|
check_url_host($url);
|
|
|
|
if ($is_member) {
|
|
if ($url)
|
|
goto_url($url);
|
|
else
|
|
goto_url(G5_URL);
|
|
}
|
|
|
|
$login_url = login_url($url);
|
|
$login_action_url = G5_HTTPS_BBS_URL . "/login_check.php";
|
|
|
|
$login_file = "{$member_skin_path}/login.skin.php";
|
|
|
|
if (!file_exists($login_file))
|
|
$member_skin_path = G5_SKIN_PATH . '/member/basic';
|
|
|
|
include_once "{$member_skin_path}/login.skin.php";
|
|
include_once "./_tail.sub.php";
|