| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- <?php
- include $_SERVER['DOCUMENT_ROOT'].'/common/lib/comm.php';
- // include $_SERVER['DOCUMENT_ROOT'].'/common/auth_chk.php';
- exit;
- ?>
- <? include("../include/inc_top.php") ?>
- <? include("../include/inc_header.php") ?>
- <section id="wrap" class="bg_join">
- <section id="content">
- <div class="find_wrap">
- <div class="fl find">
- <h2>아이디 찾기</h2>
- <div class="find_form">
- <p><input type="text" class="inp_txt" style="width:100%;" placeholder="이름"></p>
- <p><input type="text" class="inp_txt" style="width:100%;" placeholder="핸드폰"></p>
- </div>
- <p class="btn"><a href="#" class="button" onclick="openLayer('id'); return false;">아이디 찾기</a></p>
- </div>
- <div class="fr find ty2">
- <h2>비밀번호 찾기</h2>
- <div class="find_form">
- <p>
- <input type="text" class="inp_txt" style="width:140px;" placeholder="아이디"> @
- <input type="text" class="inp_txt" style="width:140px;">
- <span class="select" style="width:163px;">
- <select>
- <option value="">직접입력</option>
- </select>
- </span>
- </p>
- <p><input type="text" class="inp_txt" style="width:100%;" placeholder="이름"></p>
- <p><input type="text" class="inp_txt" style="width:100%;" placeholder="핸드폰"></p>
- </div>
- <p class="btn"><a href="#" class="button" onclick="openLayer('pw'); return false;">비밀번호 찾기</a></p>
- </div>
- </div>
- <!-- layer popup -->
- <div class="layer_popup find_popup id_popup">
- <div class="search_result">
- <p><span>구은호</span>님의 아이디는<br><em>design@interscope.co.kr</em> 입니다.</p>
- <div class="btn_center"><a href="#" class="button" onclick="closeLayer('id'); return false;">확인</a></div>
- </div>
- </div>
- <div class="layer_popup find_popup pw_popup">
- <div class="search_result">
- <p><span>구은호</span>님의 비밀번호는<br><em>fjdsdljflsjdglk58463@</em> 입니다.</p>
- <div class="btn_center"><a href="#" class="button" onclick="closeLayer('pw'); return false;">확인</a></div>
- </div>
- </div>
- <!-- // layer popup -->
- </section>
- </section>
- <script language="javascript" type="text/javascript">
- $(function(){
- $("#idSearchResult").hide();
- $("#nm_name, #nm_email").focus(function() {
- $("#idSearchResult").fadeOut();
- });
- $("#btn_search").on("click",function(){
- if($("#nm_name").val()==""){
- alert("이름을 입력하세요");
- return false;
- }
- if($("#nm_hp").val()==""){
- alert("휴대폰 번호를 입력하세요");
- return false;
- }
- $.post("proc_join.php", { mode: "IdSearch", nm_name: $("#nm_name").val(), nm_hp: $("#nm_hp").val()},function(data) {
- if(data!=""){
- $("#idSearchResult").show();
- $("#idSearchResult").find("td").html("아이디 <span style='color:red'>"+data +"</span> 가 검색되었습니다.");
- $("#pw_search").show();
- }else{
- alert("검색된 아이디가 없습니다.");
- return;
- }
- });
- });
- });
- </script>
- <? include("../include/inc_footer.php") ?>
- <? include("../include/inc_bottom.php") ?>
- <?
- mysql_close($connect);
- ?>
|