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
|
<?php Global $cinfo; $cur_img_url = $j3_img_url."/".$sk['sk_img_path'];
if($skin_css!=''){ echo $skin_css; } else { ?> <style> .icon_location {background:url('<?php echo $cur_img_url;?>/location.png') no-repeat;} </style> <?php }?> <a id='join_top'></a> <div class="class_skin_idx_<?php echo $sk_idx;?>"> <!-- 회원가입약관 동의 시작 { --> <div class="pt50 pb100"><!--class="mbskin"-->
<div class="p100_0 align_c"> <p class="mb10 txt17 bold"><?php echo $cinfo['comp_name'];?>님의 회원가입을 진심으로 축하드립니다.</p> <p class="txt14"><?php echo $config['shop_title'];?>의 다양한 상품과 서비스를 만나보세요.</p> </div>
<div class="p35_50 gray_line"> <p class="pl10 txt14 l_height20 icon_location" style="background-position:0 -130px;">회원님의 비밀번호는 아무도 알 수 없는 암호화 코드로 저장되므로 안심하셔도 좋습니다.</p> <p class="pl10 txt14 l_height20 icon_location" style="background-position:0 -130px;">아이디, 비밀번호 분실 시에는 회원가입 시 입력한 이메일 주소를 이용하여 찾을 수 있습니다.</p> <p class="pl10 txt14 l_height20 icon_location" style="background-position:0 -130px;">회원 탈퇴는 언제든지 가능하며, 일정시간이 지난 후 회원님의 정보는 삭제하고 있습니다.</p> </div>
<div class="mt50 align_c"> <input type="submit" class="box170_50 custom2 bold custom_line2 bg_white main_go_class" value="메인으로"> </div>
</div> <!-- } 회원정보 입력/수정 끝 --> </div> <script> $(function(){ $(".main_go_class").css("cursor","pointer").click(function(){ // 메인바로가기 링크 document.location.href='<?php echo $j3_shop_url;?>'; }); }); </script>
|