사용자: 회원가입 정보입력 캡챠, 아이디/패스워드 찾기 스타일, pg 소스코드 줄바꿈
This commit is contained in:
@ -426,7 +426,7 @@ a {color:#000;text-decoration:none}
|
||||
.new_win_ul a {display:block;padding:10px;border-right:1px solid #eee;border-left:1px solid #eee;color:#595959;font-family:"dotum";font-size:1em;font-weight:bold}
|
||||
.new_win_ul a:hover,
|
||||
.new_win_ul a:focus {background:#faf9f5}
|
||||
.btn_win {margin-bottom:20px;text-align:center} /* 새창용 */
|
||||
.btn_win {clear:both;margin-bottom:20px;text-align:center} /* 새창용 */
|
||||
.btn_win a {display:inline-block;padding:0 10px;height:28px;border:1px solid #ccc;background:#fafafa;color:#000;font-size:0.75em;text-decoration:none;line-height:2.5em}
|
||||
|
||||
/* 포인트 내역 */
|
||||
@ -456,6 +456,13 @@ a {color:#000;text-decoration:none}
|
||||
/* 쪽지 쓰기 */
|
||||
#memo_write textarea {height:100px}
|
||||
|
||||
/* 아이디/패스워드 찾기 */
|
||||
#find_info fieldset {padding:0;border:0}
|
||||
#find_info legend {margin:0;padding:0;width:0;height:0;border:0;overflow:hidden}
|
||||
#find_info p {font-size:0.75em}
|
||||
#find_info #captcha {padding-top:20px;border-top:1px solid #ddd}
|
||||
#find_info #captcha input {margin-left:5px}
|
||||
|
||||
/* pagination */
|
||||
.pg {clear:both;margin:0 0 20px;padding-top:20px;font-size:0.75em;text-align:center}
|
||||
.pg_wrap {display:inline-block;border:1px solid #ddd;letter-spacing:-4px}
|
||||
|
||||
@ -2,21 +2,26 @@
|
||||
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
|
||||
?>
|
||||
|
||||
<h1>아이디/패스워드 찾기</h1>
|
||||
<div id="find_info" class="new_win">
|
||||
<h1>아이디/패스워드 찾기</h1>
|
||||
|
||||
<form name="fpasswordlost" method="post" action="<?=$action_url?>" onsubmit="return fpasswordlost_submit(this);" autocomplete="off">
|
||||
<fieldset>
|
||||
<legend>이메일 주소 입력</legend>
|
||||
<p>회원가입 시 등록하신 이메일 주소를 입력해 주시면, 해당 이메일로 아이디와 패스워드 정보를 보내드립니다.</p>
|
||||
<label for="mb_email">E-mail 주소</label>
|
||||
<input type="text" id="mb_email" name="mb_email" class="email" required size="45" title="E-mail 주소">
|
||||
</fieldset>
|
||||
<? echo captcha_html(); ?>
|
||||
<div class="btn_confirm">
|
||||
<input type="submit" value="확인">
|
||||
<a href="javascript:window.close();">창닫기</a>
|
||||
<form name="fpasswordlost" method="post" action="<?=$action_url?>" onsubmit="return fpasswordlost_submit(this);" autocomplete="off">
|
||||
<fieldset>
|
||||
<legend>이메일 주소 입력</legend>
|
||||
<p>
|
||||
회원가입 시 등록하신 이메일 주소를 입력해 주세요.<br>
|
||||
해당 이메일로 아이디와 패스워드 정보를 보내드립니다.
|
||||
</p>
|
||||
<label for="mb_email">E-mail 주소</label>
|
||||
<input type="text" id="mb_email" name="mb_email" class="fieldset_input email" required size="30" title="E-mail 주소">
|
||||
</fieldset>
|
||||
<?=captcha_html(); ?>
|
||||
<div class="btn_win">
|
||||
<input type="submit" class="btn_submit" value="확인">
|
||||
<a href="javascript:window.close();" class="btn_cancel">창닫기</a>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</form>
|
||||
|
||||
<script>
|
||||
function fpasswordlost_submit(f)
|
||||
|
||||
@ -193,9 +193,12 @@ var member_skin_path = "<?=$member_skin_path?>";
|
||||
<td><input type="text" id="reg_mb_recommend" name="mb_recommend" class="frm_input" title="추천인아이디"></td>
|
||||
</tr>
|
||||
<? } ?>
|
||||
</table>
|
||||
|
||||
<?=$captcha_html?>
|
||||
<tr>
|
||||
<th scope="row">자동등록방지</th>
|
||||
<td><?=$captcha_html?></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<div class="btn_confirm">
|
||||
<input type="submit" class="btn_submit" value="회원가입" accesskey="s">
|
||||
|
||||
Reference in New Issue
Block a user