38 lines
1.4 KiB
PHP
38 lines
1.4 KiB
PHP
<?
|
|
// E-mail 수정시 인증 메일 (회원님께 발송)
|
|
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
|
|
?>
|
|
|
|
<!doctype html>
|
|
<html lang="ko">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>회원 인증 메일</title>
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div style="margin:30px auto;width:600px;border:10px solid #f7f7f7">
|
|
<div style="border:1px solid #dedede">
|
|
<h1 style="padding:30px 30px 0;background:#f7f7f7;color:#555;font-size:1.4em">
|
|
회원 인증 메일입니다.
|
|
</h1>
|
|
<span style="display:block;padding:10px 30px 30px;background:#f7f7f7;text-align:right">
|
|
<a href="<?=G4_URL?>" target="_blank"><?=$config['cf_title']?></a>
|
|
</span>
|
|
<p style="margin:20px 0 0;padding:30px 30px 50px;min-height:200px;height:auto !important;height:200px;border-bottom:1px solid #eee">
|
|
<b><?=$mb_name?></b> 님의 E-mail 주소가 변경되었습니다.<br><br>
|
|
|
|
아래의 주소를 클릭하시면 인증이 완료됩니다.<br>
|
|
<a href="<?=$certify_href?>" target="_blank"><b><?=$certify_href?></b></a><br><br>
|
|
|
|
회원님의 성원에 보답하고자 더욱 더 열심히 하겠습니다.<br>
|
|
감사합니다.
|
|
</p>
|
|
<a href="<?=G4_BBS_URL?>/login.php" target="_blank" style="display:block;padding:30px 0;background:#484848;color:#fff;text-decoration:none;text-align:center"><?=$config['cf_title']?> 로그인</a>
|
|
</div>
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|