그누보드 [G5] 관리자페이지의 약관, 개인정보처리방침을 일반 페이지에서 사용하기
페이지 정보
본문
일반적으로 홈페이지 하단에 이용약관과 개인정보처리방침을 사용합니다.
그누보드5 관리자페이지 이용약관, 개인정보처리방침 넣는 공간이 있는데요. 그것을 이용하는 방법입니다.
1. 이용약관
그누보드5 / bbs / hp_stipulation.php
<?php
include_once "./_common.php";
include_once G5_PATH."/head.sub.php";
add_stylesheet('<link rel="stylesheet" href="'.$member_skin_url.'/style.css">', 0);
//include_once G5_PATH."/head.php";
?>
<div style="margin:0px 3px; border:#EBEBEB 4px solid; height:40px; line-height:40px; color:#666666; font-weidth:bold;">이용약관</div>
<div style="padding:10px 15px; border-bottom:2px #E6E6E6 solid;"><?php echo nl2br($config['cf_stipulation']); ?></div>
<div style="text-align:center; margin:15px 0 0 0">
<button type="button" onclick="window.close();" style="width:50px; height:23px; line-height:20px;">창닫기</button>
</div>
<?php
//include_once G5_PATH."/tail.php";
include_once G5_PATH."/tail.sub.php";
?>
2. 개인정보처리방침
그누보드5 / bbs / hp_privacy.php
<?php
include_once "./_common.php";
include_once G5_PATH."/head.sub.php";
add_stylesheet('<link rel="stylesheet" href="'.$member_skin_url.'/style.css">', 0);
//include_once G5_PATH."/head.php";
?>
<div style="margin:0px 3px; border:#EBEBEB 4px solid; height:40px; line-height:40px; color:#666666; font-weidth:bold;">개인정보처리방침</div>
<div style="padding:10px 15px; border-bottom:2px #E6E6E6 solid;"><?php echo nl2br($config['cf_privacy']); ?></div>
<div style="text-align:center; margin:15px 0 0 0">
<button type="button" onclick="window.close();" style="width:50px; height:23px; line-height:20px;">창닫기</button>
</div>
<?php
//include_once G5_PATH."/tail.php";
include_once G5_PATH."/tail.sub.php";
?>
3. 이메일무단수집거부
그누보드5 / bbs / hp_email_security.php
<?php
include_once "./_common.php";
include_once G5_PATH."/head.sub.php";
add_stylesheet('<link rel="stylesheet" href="'.$member_skin_url.'/style.css">', 0);
//include_once G5_PATH."/head.php";
?>
<div style="margin:0px 3px; border:#EBEBEB 4px solid; height:40px; line-height:40px; color:#666666; font-weidth:bold;">이메일무단수집거부</div>
<div style="padding:10px 15px; border-bottom:2px #E6E6E6 solid;">
본 웹사이트는 게시된 이메일 주소가 전자우편 수집 프로그램이나 그 밖의 기술적 장치를 이용하여 무단 수집되는 것을 거부합니다. 이를 위반시 『정보통신망이용촉진및정보보호등에관한법률』등에 의해 처벌 받을 수 있습니다.
</div>
<div style="text-align:center; margin:15px 0 0 0">
<button type="button" onclick="window.close();" style="width:50px; height:23px; line-height:20px;">창닫기</button>
</div>
<?php
//include_once G5_PATH."/tail.php";
include_once G5_PATH."/tail.sub.php";
?>
4. 카피라이트 또는 이용약관 및 개인정보처리방침 링크가 필요한 곳에 아래의 내용을 추가합니다.
<script type="text/javascript">
function win_stipulation(url) {
if (!url) { url = "<?php echo G5_BBS_URL; ?>/hp_stipulation.php"; }
window.open(url, "hp_stipulation", "left=20, top=20, width=616, height=500, scrollbars=1");
}
function win_privacy(url) {
if (!url) { url = "<?php echo G5_BBS_URL; ?>/hp_privacy.php"; }
window.open(url, "hp_privacy", "left=20, top=20, width=616, height=500, scrollbars=1");
}
function win_email_security(url) {
if (!url) { url = "<?php echo G5_BBS_URL; ?>/hp_email_security.php"; }
window.open(url, "hp_email_security", "left=20, top=20, width=400, height=175, scrollbars=1");
}
</script>
<a href="javascript:win_stipulation();">이용약관</a>
<a href="javascript:win_privacy();">개인정보처리방침</a>
<a href="javascript:win_email_security();">이메일무단수집거부</a>
그누보드5 관리자페이지 이용약관, 개인정보처리방침 넣는 공간이 있는데요. 그것을 이용하는 방법입니다.
1. 이용약관
그누보드5 / bbs / hp_stipulation.php
<?php
include_once "./_common.php";
include_once G5_PATH."/head.sub.php";
add_stylesheet('<link rel="stylesheet" href="'.$member_skin_url.'/style.css">', 0);
//include_once G5_PATH."/head.php";
?>
<div style="margin:0px 3px; border:#EBEBEB 4px solid; height:40px; line-height:40px; color:#666666; font-weidth:bold;">이용약관</div>
<div style="padding:10px 15px; border-bottom:2px #E6E6E6 solid;"><?php echo nl2br($config['cf_stipulation']); ?></div>
<div style="text-align:center; margin:15px 0 0 0">
<button type="button" onclick="window.close();" style="width:50px; height:23px; line-height:20px;">창닫기</button>
</div>
<?php
//include_once G5_PATH."/tail.php";
include_once G5_PATH."/tail.sub.php";
?>
2. 개인정보처리방침
그누보드5 / bbs / hp_privacy.php
<?php
include_once "./_common.php";
include_once G5_PATH."/head.sub.php";
add_stylesheet('<link rel="stylesheet" href="'.$member_skin_url.'/style.css">', 0);
//include_once G5_PATH."/head.php";
?>
<div style="margin:0px 3px; border:#EBEBEB 4px solid; height:40px; line-height:40px; color:#666666; font-weidth:bold;">개인정보처리방침</div>
<div style="padding:10px 15px; border-bottom:2px #E6E6E6 solid;"><?php echo nl2br($config['cf_privacy']); ?></div>
<div style="text-align:center; margin:15px 0 0 0">
<button type="button" onclick="window.close();" style="width:50px; height:23px; line-height:20px;">창닫기</button>
</div>
<?php
//include_once G5_PATH."/tail.php";
include_once G5_PATH."/tail.sub.php";
?>
3. 이메일무단수집거부
그누보드5 / bbs / hp_email_security.php
<?php
include_once "./_common.php";
include_once G5_PATH."/head.sub.php";
add_stylesheet('<link rel="stylesheet" href="'.$member_skin_url.'/style.css">', 0);
//include_once G5_PATH."/head.php";
?>
<div style="margin:0px 3px; border:#EBEBEB 4px solid; height:40px; line-height:40px; color:#666666; font-weidth:bold;">이메일무단수집거부</div>
<div style="padding:10px 15px; border-bottom:2px #E6E6E6 solid;">
본 웹사이트는 게시된 이메일 주소가 전자우편 수집 프로그램이나 그 밖의 기술적 장치를 이용하여 무단 수집되는 것을 거부합니다. 이를 위반시 『정보통신망이용촉진및정보보호등에관한법률』등에 의해 처벌 받을 수 있습니다.
</div>
<div style="text-align:center; margin:15px 0 0 0">
<button type="button" onclick="window.close();" style="width:50px; height:23px; line-height:20px;">창닫기</button>
</div>
<?php
//include_once G5_PATH."/tail.php";
include_once G5_PATH."/tail.sub.php";
?>
4. 카피라이트 또는 이용약관 및 개인정보처리방침 링크가 필요한 곳에 아래의 내용을 추가합니다.
<script type="text/javascript">
function win_stipulation(url) {
if (!url) { url = "<?php echo G5_BBS_URL; ?>/hp_stipulation.php"; }
window.open(url, "hp_stipulation", "left=20, top=20, width=616, height=500, scrollbars=1");
}
function win_privacy(url) {
if (!url) { url = "<?php echo G5_BBS_URL; ?>/hp_privacy.php"; }
window.open(url, "hp_privacy", "left=20, top=20, width=616, height=500, scrollbars=1");
}
function win_email_security(url) {
if (!url) { url = "<?php echo G5_BBS_URL; ?>/hp_email_security.php"; }
window.open(url, "hp_email_security", "left=20, top=20, width=400, height=175, scrollbars=1");
}
</script>
<a href="javascript:win_stipulation();">이용약관</a>
<a href="javascript:win_privacy();">개인정보처리방침</a>
<a href="javascript:win_email_security();">이메일무단수집거부</a>
댓글목록
등록된 댓글이 없습니다.