영카트 5.4 버전 내용 적용

This commit is contained in:
thisgun
2019-12-02 10:29:31 +09:00
parent 8517e1e31e
commit 9b0078350d
840 changed files with 36442 additions and 28088 deletions

View File

@ -5,10 +5,7 @@ $g5['title'] = '상품 재입고 알림 (SMS)';
include_once(G5_PATH.'/head.sub.php');
// 상품정보
$sql = " select it_id, it_name, it_soldout, it_stock_sms
from {$g5['g5_shop_item_table']}
where it_id = '$it_id' ";
$it = sql_fetch($sql);
$it = get_shop_item($it_id, true);
if(!$it['it_id'])
alert_close('상품정보가 존재하지 않습니다.');
@ -18,6 +15,11 @@ if(!$it['it_soldout'] || !$it['it_stock_sms'])
// add_stylesheet('css 구문', 출력순서); 숫자가 작을 수록 먼저 출력됨
add_stylesheet('<link rel="stylesheet" href="'.G5_SHOP_SKIN_URL.'/style.css">', 0);
if (G5_IS_MOBILE) {
add_stylesheet('<link rel="stylesheet" href="'.G5_MSHOP_SKIN_URL.'/style.css">', 0);
}
?>
<div id="sit_sms_new" class="new_win">
@ -26,14 +28,14 @@ add_stylesheet('<link rel="stylesheet" href="'.G5_SHOP_SKIN_URL.'/style.css">',
<form name="fstocksms" method="post" action="<?php echo G5_HTTPS_SHOP_URL; ?>/itemstocksmsupdate.php" onsubmit="return fstocksms_submit(this);" autocomplete="off">
<input type="hidden" name="it_id" value="<?php echo $it_id; ?>">
<div class="form_01 new_win_con">
<div class="form_01">
<ul>
<li class="prd_name">
<?php echo $it['it_name']; ?>
</li>
<li>
<label for="ss_hp" class="sound_only">휴대폰번호<strong> 필수</strong></label>
<input type="text" name="ss_hp" value="<?php echo $member['mb_hp']; ?>" id="ss_hp" required class="required frm_input full_input">
<input type="text" name="ss_hp" value="<?php echo $member['mb_hp']; ?>" id="ss_hp" required class="required frm_input full_input" placeholder="휴대폰번호">
</li>
<li>
<strong>개인정보처리방침안내</strong>
@ -41,12 +43,13 @@ add_stylesheet('<link rel="stylesheet" href="'.G5_SHOP_SKIN_URL.'/style.css">',
</li>
</ul>
<div id="sms_agree" class="win_desc">
<label for="agree">개인정보처리방침안내의 내용에 동의합니다.</label>
<input type="checkbox" name="agree" value="1" id="agree">
<div id="sms_agree" class="chk_box">
<input type="checkbox" name="agree" value="1" id="agree" class="selec_chk">
<label for="agree"><span></span>개인정보처리방침안내의 내용에 동의합니다.</label>
</div>
<div class="win_btn">
<input type="submit" value="확인" class="btn_submit">
<button type="submit" class="btn_submit">확인</button>
<button type="button" onclick="window.close();" class="btn_close">닫기</button>
</div>
</div>