쇼핑몰: input select label 중심 마크업 정리 중

This commit is contained in:
whitedot
2014-04-03 16:52:58 +09:00
parent 485b114629
commit 6fabc2bc87
12 changed files with 35 additions and 23 deletions

View File

@ -263,7 +263,8 @@ add_stylesheet('<link rel="stylesheet" href="'.G5_SHOP_CSS_URL.'/style.css">', 0
<span class="sit_opt_subj"><?php echo $it['it_name']; ?></span>
<span class="sit_opt_prc">(+0원)</span>
<div>
<input type="text" name="ct_qty[<?php echo $it_id; ?>][]" value="<?php echo $it['it_buy_min_qty']; ?>" class="frm_input" size="5">
<label for="ct_qty_<?php echo $i; ?>" class="sound_only">수량</label>
<input type="text" name="ct_qty[<?php echo $it_id; ?>][]" value="<?php echo $it['it_buy_min_qty']; ?>" id="ct_qty_<?php echo $i; ?>" class="frm_input" size="5">
<button type="button" class="sit_qty_plus btn_frmline">증가</button>
<button type="button" class="sit_qty_minus btn_frmline">감소</button>
</div>

View File

@ -37,7 +37,7 @@ add_stylesheet('<link rel="stylesheet" href="'.G5_SHOP_SKIN_URL.'/style.css">',
<td><input type="text" name="iq_hp" value="<?php echo $qa['iq_hp']; ?>" class="frm_input" size="20"> 휴대폰번호를 입력하시면 답변 등록 시 답변등록 알림이 SMS로 전송됩니다.</td>
</tr>
<tr>
<th scope="row"><label for="iq_subject">제목</label></th>
<th scope="row"><label for="iq_subject">제목<strong class="sound_only"> 필수</strong></label></th>
<td><input type="text" name="iq_subject" value="<?php echo get_text($qa['iq_subject']); ?>" id="iq_subject" required class="required frm_input" minlength="2" maxlength="250"></td>
</tr>
<tr>

View File

@ -12,8 +12,8 @@ add_stylesheet('<link rel="stylesheet" href="'.G5_SHOP_SKIN_URL.'/style.css">',
<form method="get" action="<?php echo $_SERVER['PHP_SELF']; ?>">
<div id="sqa_sch">
<a href="<?php echo $_SERVER['PHP_SELF']; ?>">전체보기</a>
<label for="sfl" class="sound_only">검색항목</label>
<select name="sfl" required id="sfl">
<label for="sfl" class="sound_only">검색항목<strong class="sound_only"> 필수</strong></label>
<select name="sfl" id="sfl" required class="required">
<option value="">선택</option>
<option value="b.it_name" <?php echo get_selected($sfl, "b.it_name", true); ?>>상품명</option>
<option value="a.it_id" <?php echo get_selected($sfl, "a.it_id"); ?>>상품코드</option>

View File

@ -22,7 +22,7 @@ add_stylesheet('<link rel="stylesheet" href="'.G5_SHOP_SKIN_URL.'/style.css">',
</colgroup>
<tbody>
<tr>
<th scope="row"><label for="is_subject">제목</label></th>
<th scope="row"><label for="is_subject">제목<strong class="sound_only"> 필수</strong></label></th>
<td><input type="text" name="is_subject" value="<?php echo get_text($use['is_subject']); ?>" id="is_subject" required class="required frm_input" minlength="2" maxlength="250"></td>
</tr>
<tr>

View File

@ -11,8 +11,8 @@ add_stylesheet('<link rel="stylesheet" href="'.G5_SHOP_SKIN_URL.'/style.css">',
<form method="get" action="<?php echo $_SERVER['PHP_SELF']; ?>">
<div id="sps_sch">
<a href="<?php echo $_SERVER['PHP_SELF']; ?>">전체보기</a>
<label for="sfl" class="sound_only">검색항목</label>
<select name="sfl" required id="sfl">
<label for="sfl" class="sound_only">검색항목<strong class="sound_only"> 필수</strong></label>
<select name="sfl" id="sfl" required>
<option value="">선택</option>
<option value="b.it_name" <?php echo get_selected($sfl, "b.it_name"); ?>>상품명</option>
<option value="a.it_id" <?php echo get_selected($sfl, "a.it_id"); ?>>상품코드</option>