공통: #366 재입고SMS 알림기능 마크업

This commit is contained in:
whitedot
2014-02-27 13:46:38 +09:00
parent 873b530d58
commit e34ca9b564
8 changed files with 52 additions and 38 deletions

View File

@ -1,7 +1,7 @@
<?php
include_once('./_common.php');
$g5['title'] = '상품 재입고SMS 알림요청 등록';
$g5['title'] = '상품 재입고 알림 (SMS)';
include_once(G5_PATH.'/head.sub.php');
// 상품정보
@ -15,37 +15,45 @@ if(!$it['it_id'])
if(!$it['it_soldout'] || !$it['it_stock_sms'])
alert_close('재입고SMS 알림을 신청할 수 없는 상품입니다.');
// add_stylesheet('css 구문', 출력순서); 숫자가 작을 수록 먼저 출력됨
add_stylesheet('<link rel="stylesheet" href="'.G5_SHOP_SKIN_URL.'/style.css">', 0);
?>
<div>
<h2><?php echo $g5['title']; ?></h2>
<div id="sit_sms_new" class="new_win">
<h1 id="win_title"><?php echo $g5['title']; ?></h1>
<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; ?>">
<table>
<colgroup>
<col class="grid_4">
<col>
</colgroup>
<tbody>
<tr>
<th scope="row">상품</th>
<td><?php echo $it['it_name']; ?></td>
</tr>
<tr>
<th scope="row"><label for="ss_hp">휴대폰번호</label></th>
<td><input type="text" name="ss_hp" value="<?php echo $member['mb_hp']; ?>" id="ss_hp" required class="required frm_input"></td>
</tr>
</tbody>
</table>
<div>
개인정보처리방침안내
<textarea readonly><?php echo get_text($config['cf_privacy']) ?></textarea>
<div class="tbl_frm01 tbl_wrap">
<table>
<colgroup>
<col class="grid_4">
<col>
</colgroup>
<tbody>
<tr>
<th scope="row">상품</th>
<td><?php echo $it['it_name']; ?></td>
</tr>
<tr>
<th scope="row"><label for="ss_hp">휴대폰번호</label></th>
<td><input type="text" name="ss_hp" value="<?php echo $member['mb_hp']; ?>" id="ss_hp" required class="required frm_input"></td>
</tr>
<tr>
<th scope="row"><strong>개인정보처리방침안내</strong></th>
<td><textarea readonly><?php echo get_text($config['cf_privacy']) ?></textarea></td>
</tr>
</tbody>
</table>
</div>
<div id="sms_agree" class="win_desc">
<label for="agree">개인정보처리방침안내의 내용에 동의합니다.</label>
<input type="checkbox" name="agree" value="1" id="agree">
</div>
<div>
<input type="submit" value="확인">
<div class="win_btn">
<input type="submit" value="확인" class="btn_submit">
<button type="button" onclick="window.close();">닫기</button>
</div>
</form>