2022-09-17 20:50:50 +09:00
|
|
|
<?php
|
2024-09-23 11:07:19 +09:00
|
|
|
include_once "./_common.php";
|
2024-09-19 20:57:39 +09:00
|
|
|
include_once(G5_CAPTCHA_PATH . '/captcha.lib.php');
|
2022-09-17 20:50:50 +09:00
|
|
|
|
|
|
|
|
if ($is_member) {
|
2024-09-19 20:57:39 +09:00
|
|
|
alert("이미 로그인중입니다.");
|
2022-09-17 20:50:50 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$g5['title'] = '회원정보 찾기';
|
2024-09-19 20:57:39 +09:00
|
|
|
include_once(G5_PATH . '/head.sub.php');
|
2022-09-17 20:50:50 +09:00
|
|
|
|
2024-09-19 20:57:39 +09:00
|
|
|
$action_url = G5_HTTPS_BBS_URL . "/password_lost2.php";
|
|
|
|
|
include_once($member_skin_path . '/password_lost.skin.php');
|
2022-09-17 20:50:50 +09:00
|
|
|
|
2024-09-19 20:57:39 +09:00
|
|
|
include_once(G5_PATH . '/tail.sub.php');
|