1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
<style> /*비밀번호변경*/ .change-smspwd-container { position:fixed;left:25%;top:260px;width:300px;height:230px;margin-left:140px;border:1px solid #2f6ba9;background:#f7f7f7;z-index:10005;display:none;} .change-smspwd-container h1 { height:45px;line-height:45px;border-bottom:1px solid #2f6ba9;background:#5a94ce} .change-smspwd-container h1 span { position:absolute;left:20px;color:#FFF;font-size:18px;font-weight:600} .change-smspwd-container h1 a.pwd-close-btn { position:absolute;top:5px;right:12px;width:70px;heigth:34px;color:#FFF;line-height:34px;text-align:center;font-size:14px;font-weight:600;border:1px solid #FFF;} .change-smspwd-container .change-smspwd { margin:15px;padding:10px 15px 5px;width:270px;border:1px solid #BBB;background:#FFF;} .change-smspwd label { margin-right:10px;font-size:13px;} .change-smspwd input[type=password] { margin-bottom:3px;padding:0 3px;width:145px;height:24px;line-height:24px;border:1px solid #E1E1E1;} .change-smspwd .change-smspwd-btn { margin:0 auto;padding:10px 0;width:155px;} .change-smspwd a:first-child { margin-right:5px;} .change-smspwd a { display:inline-block;width:75px;height:24px;line-height:24px;text-align:center;color:#FFF;font-weight:600;-moz-border-radius:2px;-webkit-border-radius:2px;border-radius:2px;} .blue-btn span {color:white;} .black-btn span {color:white;} </style> <div class="change-smspwd-container"> <h1> <span>SMS 비밀번호변경</span> <a class="pwd-close-btn">닫기</a> </h1> <!-- 검색 --> <div class="change-smspwd"> <form name="smschgpassword" id="smschgpassword" method="post" action="" enctype="multipart/form-data"> <fieldset> <legend class="screen_out">비밀번호 변경</legend> <label for="pwd">이전 비밀번호</label><input type="password" id="pwd" name='oldpass' placeholder="이전 비밀번호"><br /> <label for="pwd-new1">신규 비밀번호</label><input type="password" id="pwd-new1" name='newpass' placeholder="신규 비밀번호"><br /> <label for="pwd-new2">비밀번호 확인</label><input type="password" id="pwd-new2" name='newpass2' placeholder="비밀번호 확인"> </fieldset> <div class="change-smspwd-btn"> <a href="#" class="blue-btn pop_pwsave_class"><span>저장</span></a><a href="#" class="black-btn" id='pop_pwcancel_btn'><span>취소</span></a> </div> </form> </div><!--//change-smspwd--> <!-- //검색 -->
</div><!--//change-smspwd-->
<script type="text/javascript"> $(function(){ $(".change-smspwd-container").hide();// 일단숨김
$(".pwd-close-btn, #pop_pwcancel_btn").click(function () { $(".change-smspwd-container").fadeOut(); });
$("#pop_pwsave_btn").click(function(){ chgpass(); });
}); </script>
|