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
|
<style> /*비밀번호변경*/ .change-pwd-container {position:fixed; left:30%; top:30%; width:300px; height:230px; margin-left:140px; border:1px solid #2f6ba9; background:#f7f7f7; z-index:10005;display:none;} .change-pwd-container h1 {height:50px; line-height:50px; border-bottom:1px solid #2f6ba9; background:#5a94ce} .change-pwd-container h1 span {position:absolute; left:20px; color:#FFF; font-size:18px; font-weight:600} .change-pwd-container h1 a.pwd-close-btn {position:absolute; top:7px; 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-pwd-container .change-pwd {margin:15px; padding:10px 15px 5px; width:240px; border:1px solid #BBB; background:#FFF;} .change-pwd label {margin-right:5px} .change-pwd input[type=text] {margin-bottom:3px; padding:0 3px; width:235px; height:24px; line-height:24px; border:1px solid #E1E1E1;} .change-pwd .change-pwd-btn {margin:0 auto; padding:10px 0; width:155px;} .change-pwd a:first-child {margin-right:5px;} .change-pwd 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;} .btnArea {text-align:center;} .btnArea a {display:inline-block;margin:5px;width:140px;height:40px;line-height:40px;text-align:center;border-radius:3px;} .btnArea a span {color:#fff;font-size:14px;} .blueBtn {background:#3a6ab2 !important;color:#fff !important;} </style> <div class="change-pwd-container"> <h1> <span>전송할 e메일 입력</span> <a class="pwd-close-btn" onclick="$('.change-pwd-container').fadeOut()">닫기</a> </h1> <!-- 검색 --> <div class="change-pwd"> <form name="chgpassword" method="post" action="chgpassProcess.php" enctype="multipart/form-data"> <fieldset> <legend class="screen_out">e메일 입력</legend> <label for="pwd">전송할 e메일</label><input type="text" id="pwd" name='old_email' value='<?php echo $rOFFEM?>'><br /> </fieldset> </form> </div><!--//change-pwd--> <div class="btnArea"> <a href="javascript:tax_remail_proc();" class='blueBtn'>재발송</a> </div> <!-- //검색 -->
</div><!--//change-pwd-->
|