#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

@ -63,6 +63,7 @@ $colspan = 5;
<?=$listall?>
설정된 관리권한 <?=number_format($total_count)?>건
</span>
<strong id="msg_stx" class="msg_sound_only"></strong>
<input type="text" name="stx" value="<?=$stx?>" id="stx" title="회원아이디(필수)" required class="required frm_input">
<input type="submit" value="검색" id="fsearch_submit" class="btn_submit">
</fieldset>
@ -168,12 +169,15 @@ $colspan = 5;
<tbody>
<tr>
<th scope="row"><label for="mb_id">회원아이디<strong class="sound_only">필수</strong></label></th>
<td><input type="text" name="mb_id" value="<?=$mb_id?>" id="mb_id" title="회원아이디" required class="required frm_input"></td>
<td>
<strong id="msg_mb_id" class="msg_sound_only"></strong>
<input type="text" name="mb_id" value="<?=$mb_id?>" id="mb_id" title="회원아이디" required class="required frm_input">
</td>
</tr>
<tr>
<th scope="row"><label for="au_menu">접근가능메뉴<strong class="sound_only">필수</strong></label></th>
<td>
<select id="au_menu" name="au_menu" required title="접근가능메뉴">
<select id="au_menu" name="au_menu" required class="required" title="접근가능메뉴">
<option value=''>선택하세요
<?
foreach($auth_menu as $key=>$value)

View File

@ -127,7 +127,7 @@ $pg_anchor = "<ul class=\"anchor\">
<tr>
<th scope="row"><label for="bo_table">TABLE<?=$sound_only?></label></th>
<td colspan="2">
<input type="text" name="bo_table" value="<?=$board['bo_table'] ?>" id="bo_table" required class="frm_input" maxlength="20" <?=$bo_table_attr?>>
<input type="text" name="bo_table" value="<?=$board['bo_table'] ?>" id="bo_table" required class="required frm_input" maxlength="20" <?=$bo_table_attr?>>
<? if ($w == '') { ?>
영문자, 숫자, _ 만 가능 (공백없이 20자 이내)
<? } else { ?>

View File

@ -661,7 +661,7 @@ $pg_anchor = "
<legend>XSS 혹은 CSRF 방지</legend>
<p>관리자 권한을 탈취당하는 경우를 대비하여 패스워드를 다시 한번 확인합니다.</p>
<label for="admin_password">관리자 패스워드<strong class="sound_only">필수</strong></label>
<input type="password" name="admin_password" id="admin_password" class="required frm_input">
<input type="password" name="admin_password" id="admin_password" required class="required frm_input">
</fieldset>
<div class="btn_confirm">

View File

@ -113,11 +113,11 @@ include_once('./admin.head.php');
<tr>
<th scope="row"><label for="mb_id">아이디<?=$sound_only?></label></th>
<td>
<input type="text" name="mb_id" value="<?=$mb['mb_id']?>" id="mb_id"class="frm_input" size="15" maxlength="20" <?=$required_mb_id?>>
<input type="text" name="mb_id" value="<?=$mb['mb_id']?>" id="mb_id" <?=$required_mb_id?> class="frm_input" size="15" maxlength="20" >
<?if ($w=='u'){?><a href="./boardgroupmember_form.php?mb_id=<?=$mb['mb_id']?>">접근가능그룹보기</a><?}?>
</td>
<th scope="row"><label for="mb_password">패스워드<?=$sound_only?></label></th>
<td><input type="password" name="mb_password" id="mb_password" class="frm_input" size="15" maxlength="20" <?=$required_mb_password?>></td>
<td><input type="password" name="mb_password" id="mb_password" <?=$required_mb_password?> class="frm_input" size="15" maxlength="20"></td>
</tr>
<tr>
<th scope="row"><label for="mb_name">이름(실명)<strong class="sound_only">필수</strong></label></th>

View File

@ -96,7 +96,7 @@ function point_clear()
<option value="mb_id"<?=get_selected($_GET['sfl'], "mb_id");?>>회원아이디</option>
<option value="po_content"<?=get_selected($_GET['sfl'], "po_content");?>>내용</option>
</select>
<input type="text" name="stx" class="required frm_input" required value="<?=$stx?>" title="검색어(필수)">
<input type="text" name="stx" value="<?=$stx?>" title="검색어(필수)" required class="required frm_input">
<input type="submit" class="btn_submit" value="검색">
</fieldset>
</form>

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>

View File

@ -64,7 +64,7 @@ $colspan = 6;
<select name="sfl" id="sfl" title="검색대상">
<option value="po_subject"<?=get_selected($_GET['sfl'], "po_subject");?>>제목</option>
</select>
<input type="text" name="stx" value="<?=$stx?>" title="검색어(필수)" class="required frm_input" required>
<input type="text" name="stx" value="<?=$stx?>" title="검색어(필수)" required class="required frm_input">
<input type="submit" class="btn_submit" value="검색">
</fieldset>
</form>