#379 #293 requird속성,클래스 확인 완료

This commit is contained in:
rollydream
2013-03-12 17:01:54 +09:00
parent 9d12373ec7
commit 9d39cf7e88
18 changed files with 32 additions and 28 deletions

View File

@ -34,7 +34,7 @@ include_once('./admin.head.php');
<tbody>
<tr>
<th scope="row"><label for="po_subject">투표 제목<strong class="sound_only">필수</strong></label></th>
<td><input type="text" name="po_subject" value="<?=$po['po_subject']?>" id="po_subject" class="required frm_input" size="80" maxlength="125"></td>
<td><input type="text" name="po_subject" value="<?=$po['po_subject']?>" id="po_subject" required class="required frm_input" size="80" maxlength="125"></td>
</tr>
<?
@ -51,7 +51,7 @@ include_once('./admin.head.php');
<tr>
<th scope="row"><label for="po_poll<?=$i?>">항목 <?=$i?><?=$sound_only?></label></th>
<td>
<input type="text" name="po_poll<?=$i?>" value="<?=$po_poll?>" id="po_poll<?=$i?>" class="frm_input <?=$required?>" maxlength="125">
<input type="text" name="po_poll<?=$i?>" value="<?=$po_poll?>" id="po_poll<?=$i?>" required class="frm_input <?=$required?>" maxlength="125">
<label for="po_cnt<?=$i?>">항목 <?=$i?> 투표수</label>
<input type="text" name="po_cnt<?=$i?>" value="<?=$po['po_cnt'.$i]?>" id="po_cnt<?=$i?>" class="frm_input" size="3">
</td>