2024/11/20 보안로그인 페이지 수정

This commit is contained in:
subsub 2024-11-20 16:17:48 +09:00
parent 7b464e5a38
commit 24924aa1a1
2 changed files with 168 additions and 765 deletions

View File

@ -574,8 +574,14 @@ input[type="password"].list_inputType1 {padding: 0px;background-color: transpare
.security_login .box{width:100%;background:#fff;border-radius:5px;margin:0 0 30px 0;}
.security_login .info{display:flex;font-size:15px;color:#444;padding:15px 20px;flex-direction:column;gap:6px;}
.security_login .security_set{display:flex;height:80px;justify-content:space-between;align-items:center;padding:15px 30px;}
.security_login .security_set .title_wrap{display:flex;align-items:center;gap:20px;}
.security_login .security_set .title_wrap p{margin:3px 0 0 0;}
.security_login .security_set .ip_add_wrap{display:flex;height:46px;font-size:15px;color:#222;background:#f4f4f5;border-radius:5px;padding:8px 14px;align-items:center;gap:10px;}
.security_login .security_set .ip_add_wrap .btnType{height:30px;font-size:14px;}
.security_login .security_set .ip_add_wrap b{font-weight:500;color:#002c9a;}
.security_login .input_text{width:98%;}
.security_login .dashboard_title{padding: 0;}
.security_login .dashboard_title .small_text{margin:0 0 0 6px;font-size:14px;font-weight:300;color:#666}
.security_login .btn_plus{position:absolute;right:0;}
.security_login .set_area{display:flex;align-items:center;}
.security_login .lately_date{font-size:15px;color:#666;}

View File

@ -26,11 +26,11 @@
// on/off 시 confirm 창 노출
$('.security_set .tab_depth1 a').click(function () {
if ($(this).text().trim() == "ON") {
confirm("보안로그인 설정 후 로그인 시, 등록한 휴대폰번호로 추가 인증이 진행됩니다")
confirm("보안로그인 설정 후 로그인 시, 등록한 휴대폰번호로 추가 인증이 진행됩니다");
} else {
confirm("가입자 휴대폰번호로 본인인증 후 해제가 가능하며, 보안로그인 설정을 해제함으로써 발생하는 손해에 대하여 회사는 책임지지 않습니다.")
confirm("가입자 휴대폰번호로 본인인증 후 해제가 가능하며, 보안로그인 설정을 해제함으로써 발생하는 손해에 대하여 회사는 책임지지 않습니다.");
}
})
});
// ip추가 버튼 클릭 시 tr 추가
$(".btn_ip_plus").click(function () {
@ -38,7 +38,29 @@
$(".ip_table tbody").prepend(ipTr);
});
// 허용 IP 등록
$(".btn_allow_ip_add").click(function () {
if (confirm("현재 접속중인 IP를 접속 허용 IP로 등록하시겠습니까?")) {
alert("접속 허용 IP 등록이 완료되었습니다.");
} else {}
});
})
// 인증 휴대폰번호 관리 수정버튼 클릭 시
function memoEdit(btn) {
var memoText = $(btn).closest("tr").find(".td_memo").text();
$(".td_memo").html('<input type="text" class="input_text" value="' + memoText + '">');
$(btn).addClass("btn_save").removeClass("btn_edit").attr("onclick", "memoSave(this);").text("저장");
}
// 인증 휴대폰번호 관리 저장버튼 클릭 시
function memoSave(btn) {
var memoText = $(btn).closest("tr").find(".input_text").val();
$(".td_memo").html(memoText);
$(btn).addClass("btn_save").removeClass("btn_edit").attr("onclick", "memoEdit(this);").text("수정");
}
</script>
</head>
@ -199,69 +221,13 @@
<li class="tab"><button type="button" onclick="TabType5(this,'4');">발신번호 관리</button></li>
<li class="tab"><button type="button" onclick="TabType5(this,'5');">알림설정</button></li>
<li class="tab"><button type="button" onclick="TabType5(this,'6');">회원탈퇴</button></li>
<li class="tab active"><button type="button" onclick="TabType5(this,'7');">보안로그인</button></li>
</ul>
<div class="mypage_content current">
<div class="heading">
<h2>마이페이지</h2>
<h2>보안로그인</h2>
</div>
<div class="my_dashboard">
<div class="my_dashboard_cont1 dash_cont">
<div>
<p>
<span>홍길동</span>회원님 반갑습니다
</p>
<button type="button" class="btnType btn_security_login">보안로그인</button>
</div>
<div class="send_price">
<div class="price_title">나의<br>단가</div>
<div class="price_wrap">
<ul>
<li class="title">
<img src="/publish/images/content/icon_mypage_message.png" alt="">문자
</li>
<li class="price_line">
<span class="type">단문</span>
<span class="price">
18
</span>
</li>
<li class="price_line">
<span class="type">장문</span>
<span class="price">
50
</span>
</li>
<li>
<span class="type">그림</span>
<span class="price">
90
</span>
(2장 : 110원 / 3장 : 130원)
</li>
</ul>
<ul>
<li class="title">
<img src="/publish/images/content/icon_mypage_kakaotalk.png" alt="">카톡
</li>
<li class="price_line">
<span class="type">알림톡</span>
<span class="price">
6.9
</span>
</li>
<li class="title">
<img src="/publish/images/content/icon_mypage_fax.png" alt="">팩스
</li>
<li>
<span class="type">팩스</span>
<span class="price">
58
</span>
</li>
</ul>
</div>
</div>
</div>
<!-- 보안로그인 -->
<div class="security_login">
@ -273,9 +239,15 @@
</ul>
<!-- 보안로그인 설정 -->
<!-- 보안로그인 설정(허용 IP 아닌 경우) -->
<div class="security_set box">
<p class="dashboard_title">보안로그인</p>
<div class="title_wrap">
<p class="dashboard_title">보안로그인</p>
<div class="title_box ip_add_wrap">
<span>현재 접속중인 IP : <b>000.000.000.00</b></span>
<button type="button" class="btnType btnType6 btn_allow_ip_add">허용 IP 등록</button>
</div>
</div>
<div class="set_area">
<p class="lately_date">최근 변경일시 : <span>2024-11-01 12:49</span></p>
@ -286,7 +258,72 @@
</div>
</div>
</div>
<!-- //보안로그인 설정 -->
<!-- //보안로그인 설정(허용 IP 아닌 경우) -->
<!-- 보안로그인 설정(허용 IP인 경우) -->
<div class="security_set box">
<div class="title_wrap">
<p class="dashboard_title">보안로그인</p>
<div class="title_box ip_add_wrap">
<span>현재 접속중인 IP : <b>000.000.000.00 [허용 IP]</b></span>
</div>
</div>
<div class="set_area">
<p class="lately_date">최근 변경일시 : <span>2024-11-01 12:49</span></p>
<div class="tab_depth1">
<a href="#none" class="on">ON</a>
<a href="#none">OFF</a>
</div>
</div>
</div>
<!-- //보안로그인 설정(허용 IP인 경우) -->
<!-- 인증 휴대폰번호 관리 -->
<div class="title_area">
<p class="dashboard_title">인증 휴대폰번호 관리</p>
<p class="qmMark">?</p>
<div class="hover_cont" style="width:330px;left:240px;top:25px;">
<p>인증에 사용할 휴대폰번호를 추가로 등록하여 관리할 수 있습니다. <br>
(등록 및 삭제 시 휴대폰 본인인증 필요)</p>
</div>
<button type="button" data-tooltip="popup05" class="btn_plus"><img src="/publish/images/content/mypage_plus.png" alt="더보기"></button>
</div>
<div class="table_wrap">
<table>
<colgroup>
<col style="width: 26%;">
<col style="width: auto;">
<col style="width: 26%;">
<col style="width: 140px;">
</colgroup>
<thead>
<tr>
<th scope="col">휴대폰번호</th>
<th scope="col">메모</th>
<th scope="col">등록일시</th>
<th scope="col">관리</th>
</tr>
</thead>
<tbody>
<tr>
<td>010-0000-0000</td>
<td class="td_memo">메모 내용</td>
<td>2024-11-04 11:54</td>
<td><button type="button" class="btnType btnType5 btn_edit" style="margin:0 5px 0 0;" onclick="memoEdit(this);">수정</button><button type="button" class="btnType btn_text btn_lightgray fill btn_28">삭제</button></td>
</tr>
<tr>
<td>010-0000-0000</td>
<td>메모내용</td>
<td>2024-11-04 11:54</td>
<td><button type="button" class="btnType btnType5 btn_edit" style="margin:0 5px 0 0;" onclick="memoEdit(this);">수정</button><button type="button" class="btnType btn_text btn_lightgray fill btn_28">삭제</button></td>
</tr>
</tbody>
</table>
</div>
<!-- //인증 휴대폰번호 관리 -->
<!-- 접속 IP관리 -->
<div class="title_area">
@ -333,477 +370,82 @@
</div>
<!-- //접속 IP관리 -->
<!-- 인증 휴대폰번호 관리 -->
<!-- 로그인 내역 -->
<div class="title_area">
<p class="dashboard_title">인증 휴대폰번호 관리</p>
<p class="qmMark">?</p>
<div class="hover_cont" style="width:330px;left:240px;top:25px;">
<p>인증에 사용할 휴대폰번호를 추가로 등록하여 관리할 수 있습니다. <br>
(등록 및 삭제 시 휴대폰 본인인증 필요)</p>
</div>
<button type="button" data-tooltip="popup05" class="btn_plus"><img src="/publish/images/content/mypage_plus.png" alt="더보기"></button>
<p class="dashboard_title">로그인 내역 <span class="small_text">로그인 내역은 최대 90일까지만 보관됩니다.</span></p>
</div>
<div class="table_wrap">
<div class="table_wrap ip_table">
<table>
<colgroup>
<col style="width: calc((100% - 100px)/2);">
<col style="width: calc((100% - 100px)/2);">
<col style="width: 100px;">
<col style="width:calc(100% /3);">
<col style="width:calc(100% /3);">
<col style="width:calc(100% /3);">
</colgroup>
<thead>
<tr>
<th scope="col">휴대폰번호</th>
<th scope="col">등록일시</th>
<th scope="col">관리</th>
<th scope="col">로그인 일시</th>
<th scope="col">로그인 IP</th>
<th scope="col">로그인 환경</th>
</tr>
</thead>
<tbody>
<tr>
<td>010-0000-0000</td>
<td>2024-11-04 11:54</td>
<td>-</td>
<td>2024-11-20 13:57:12</td>
<td>119.193.215.98</td>
<td>PC</td>
</tr>
<tr>
<td>192.168.0.0</td>
<td>dadfadfjadkfjalkdjfajflajdlfjaldjflajd</td>
<td><button type="button" class="btnType btn_text btn_lightgray fill btn_28">삭제</button></td>
</tr>
</tbody>
</table>
</div>
<!-- //인증 휴대폰번호 관리 -->
</div>
<!-- //보안로그인 -->
<div class="my_dashboard_cont3">
<p class="dashboard_title">이용내역</p>
<p class="reqTxt2">(단위 : 건, 원)</p>
<div class="table_wrap">
<table>
<caption>구분, 충전금액, 사용금액, 잔액 등 정보를 제공하는 표</caption>
<colgroup>
<col style="width: 115px;">
<col style="width: calc((100% - 115px)/3);">
<col style="width: calc((100% - 115px)/3);">
<col style="width: calc((100% - 115px)/3);">
</colgroup>
<thead>
<tr>
<th scope="col">구분</th>
<th scope="col">충전금액</th>
<th scope="col">사용금액</th>
<th scope="col">잔액</th>
</tr>
</thead>
<tbody>
<tr>
<td>캐시</td>
<td>100,000,000,000</td>
<td>100,000,000,000</td>
<td>100,000,000,000</td>
</tr>
<tr>
<td>포인트</td>
<td>100,000,000,000</td>
<td>100,000,000,000</td>
<td>100,000,000,000</td>
</tr>
</tbody>
</table>
</div><button type="button"><img src="/publish/images/content/mypage_plus.png" alt="더보기"></button>
<div class="table_wrap">
<table>
<caption>구분, 문자, 알림톡, 친구톡, 팩스, 계 등 정보를 제공하는 표</caption>
<colgroup>
<col style="width: 150px;">
<col style="width: calc((100% - 150px)/5);">
<col style="width: calc((100% - 150px)/5);">
<col style="width: calc((100% - 150px)/5);">
<col style="width: calc((100% - 150px)/5);">
<col style="width: calc((100% - 150px)/5);">
</colgroup>
<thead>
<tr>
<th scope="col">구분</th>
<th scope="col">문자</th>
<th scope="col">알림톡</th>
<th scope="col">친구톡</th>
<th scope="col">팩스</th>
<th scope="col"></th>
</tr>
</thead>
<tbody>
<tr>
<td>발송건(매)수</td>
<td>100,000,000,000</td>
<td>100,000,000,000</td>
<td>100,000,000,000</td>
<td>100,000,000,000</td>
<td>100,000,000,000</td>
</tr>
<tr>
<td>사용금액</td>
<td>100,000,000,000</td>
<td>100,000,000,000</td>
<td>100,000,000,000</td>
<td>100,000,000,000</td>
<td>100,000,000,000</td>
</tr>
<tr>
<td>예약건(매)수</td>
<td>100,000,000,000</td>
<td>100,000,000,000</td>
<td>100,000,000,000</td>
<td>100,000,000,000</td>
<td>100,000,000,000</td>
</tr>
<tr>
<td>사용금액</td>
<td>100,000,000,000</td>
<td>100,000,000,000</td>
<td>100,000,000,000</td>
<td>100,000,000,000</td>
<td>100,000,000,000</td>
</tr>
</tbody>
</table>
</div>
</div>
<p class="tType1_title"><img src="/publish/images/content/icon_details_breakdown.png" alt="알림톡 아이콘 이미지">세부내역
</p>
<div class="excel_middle">
<div class="select_btnWrap clearfix">
<div class="btn_left"><span class="cal_label">기간선택</span>
<div class="calendar_wrap"><input type="text" class="startDate inp calendar picker__input" title="검색 시작일" id="startDate" name="startDate" value="" data-datecontrol="true" readonly="" aria-haspopup="true" aria-expanded="false" aria-readonly="false" aria-owns="startDate_root"><span class="dateEtc">~</span><input type="text" class="endDate inp calendar picker__input" title="검색 종료일" id="endDate" name="endDate" value="" data-datecontrol="true" readonly="" aria-haspopup="true" aria-expanded="false" aria-readonly="false" aria-owns="endDate_root"></div>
<button type="button">이번년도</button><button type="button">전월</button><button type="button">당월</button><button type="button" class="btnType6">조회</button><span class="reqTxt4"><span class="vMiddle">*</span>조회기간의 사용내역만 보여집니다.</span>
</div>
<div></div>
</div>
</div>
<div class="list_tab_wrap2 type2">
<ul class="list_tab">
<li class="tab active"><button type="button" onclick="listTab2(this,'1');">전체</button></li>
<li class="tab"><button type="button" onclick="listTab2(this,'2');">단문</button></li>
<li class="tab"><button type="button" onclick="listTab2(this,'3');">장문</button></li>
<li class="tab"><button type="button" onclick="listTab2(this,'4');">그림</button></li>
<li class="tab"><button type="button" onclick="listTab2(this,'5');">선거</button></li>
<li class="tab"><button type="button" onclick="listTab2(this,'5');">알림톡</button></li>
<li class="tab"><button type="button" onclick="listTab2(this,'5');">친구톡</button></li>
<li class="tab"><button type="button" onclick="listTab2(this,'5');">팩스</button></li>
</ul>
</div>
<div class="price_history_cont" id="listTab2_5">
<div class="list_info">
<p><span>10</span></p>
<div><button type="button" class="print_btn"><i class="print_img"></i>인쇄하기</button><button type="button" class="pdf_btn"><i class="pdf_img"></i>PDF저장</button><button type="button" class="excel_btn"><i class="downroad"></i>엑셀 다운로드</button></div>
</div>
<div class="tb_wrap">
<table class="tType4">
<colgroup>
<col style="width: 40px;">
<col style="width: 10%;">
<col style="width: 15%;">
<col style="width: 35%;">
<col style="width: 10%;">
<col style="width: 10%;">
<col style="width: 10%;">
<col style="width: 10%;">
<col style="width: 10%;">
<col style="width: 10%;">
</colgroup>
<thead>
<tr>
<th rowspan="2"><label for="" class="label">전체 선택</label><input type="checkbox"></th>
<th rowspan="2">날짜
<div class="sort_wrap"><button type="button"><img src="/publish/images/sortUp.png" alt="오름차순으로 분류"></button><button type="button"><img src="/publish/images/sortDown.png" alt="내림차순으로 분류"></button></div>
</th>
<th rowspan="2">문자유형
<div class="sort_wrap"><button type="button"><img src="/publish/images/sortUp.png" alt="오름차순으로 분류"></button><button type="button"><img src="/publish/images/sortDown.png" alt="내림차순으로 분류"></button></div>
</th>
<th rowspan="2">내용
<div class="sort_wrap"><button type="button"><img src="/publish/images/sortUp.png" alt="오름차순으로 분류"></button><button type="button"><img src="/publish/images/sortDown.png" alt="내림차순으로 분류"></button></div>
</th>
<th colspan="2">충전</th>
<th colspan="2">사용</th>
<th colspan="2">잔액</th>
</tr>
<tr>
<th>충전금</th>
<th>포인트</th>
<th>충전금</th>
<th>포인트</th>
<th>충전금</th>
<th>포인트</th>
</tr>
</thead>
<tbody>
<tr>
<td><label for="" class="label">선택</label><input type="checkbox"></td>
<td>
<p>2021-06-10</p>
</td>
<td>
<p>알림톡 텍스트</p>
</td>
<td class="tb_tit">
<p>(광고) 하이~ 무료 거부 0801000008 대리운전</p>
<div class="history_hover">
<div class="allimtalk_title"><img src="/publish/images/content/icon_allimtalk.png" alt="">알림톡
도착
</div>
<div class="allimtalk_content">
<div class="kakao_image"><img src="/publish/images/content/kakao_template_img.png" alt="">
</div>
<p class="emphasis_side_text">강조표기 보조문구 미리보기</p>
<p class="emphasis_title_text">타이틀 미리보기</p>
<p class="template_text">내용미리보기</p>
<p class="side_info_text">부가정보내용</p>
<p class="channel_info_text">채널 추가 안내 메시지 미리보기</p><button type="button" class="btn_kakao_type">버튼명</button><button type="button" class="btn_kakao_type">버튼명</button>
</div>
</div>
</td>
<td>
<p>0</p>
</td>
<td>
<p>0</p>
</td>
<td>
<p class="fwRg c_002c9a">0</p>
</td>
<td>
<p class="fwRg c_002c9a">50</p>
</td>
<td>
<p class="fwRg c_222">0</p>
</td>
<td>
<p class="fwRg c_222">350</p>
</td>
</tr>
<tr>
<td><label for="" class="label">선택</label><input type="checkbox"></td>
<td>
<p>2021-06-10</p>
</td>
<td>
<p>알림톡</p>
</td>
<td class="tb_tit">
<p>(광고) 하이~ 무료 거부 0801000008 대리운전</p>
<div class="history_hover">
<ul>
<li><img src="/publish/images/content/history_img1.jpg" alt="보낸 이미지1"></li>
</ul>
<p>(광고) 하이~ 무료 거부 08010000008 빨리빨리대리전★☎ 1588-8282 시원한 맥주한잔 후엔 10% 적립! 불러주시면 빨리 달려갑니다! (광고) 하이~
무료 거부 08010000008 빨리빨리대리전★☎ 1588-8282 시원한 맥주한잔 후엔 10% 적립! 불러주시면 빨리 달려갑니다!</p>
</div>
</td>
<td>
<p>0</p>
</td>
<td>
<p>0</p>
</td>
<td>
<p class="fwRg c_002c9a">0</p>
</td>
<td>
<p class="fwRg c_002c9a">50</p>
</td>
<td>
<p class="fwRg c_222">0</p>
</td>
<td>
<p class="fwRg c_222">350</p>
</td>
</tr>
<tr>
<td><label for="" class="label">선택</label><input type="checkbox"></td>
<td>
<p>2021-06-10</p>
</td>
<td>
<p>친구톡</p>
</td>
<td class="tb_tit">
<p>(광고) 하이~ 무료 거부 0801000008 대리운전</p>
<div class="history_hover">
<ul>
<li><img src="/publish/images/content/history_img1.jpg" alt="보낸 이미지1"></li>
</ul>
<p>(광고) 하이~ 무료 거부 08010000008 빨리빨리대리전★☎ 1588-8282 시원한 맥주한잔 후엔 10% 적립! 불러주시면 빨리 달려갑니다! (광고) 하이~
무료 거부 08010000008 빨리빨리대리전★☎ 1588-8282 시원한 맥주한잔 후엔 10% 적립! 불러주시면 빨리 달려갑니다!</p>
</div>
</td>
<td>
<p>0</p>
</td>
<td>
<p>0</p>
</td>
<td>
<p class="fwRg c_002c9a">0</p>
</td>
<td>
<p class="fwRg c_002c9a">50</p>
</td>
<td>
<p class="fwRg c_222">0</p>
</td>
<td>
<p class="fwRg c_222">350</p>
</td>
</tr>
<tr>
<td><label for="" class="label">선택</label><input type="checkbox"></td>
<td>
<p>2021-06-10</p>
</td>
<td>
<p>광고</p>
</td>
<td class="tb_tit">
<p>(광고) 하이~ 무료 거부 0801000008 대리운전</p>
<div class="history_hover">
<ul>
<li><img src="/publish/images/content/history_img1.jpg" alt="보낸 이미지1"></li>
</ul>
<p>(광고) 하이~ 무료 거부 08010000008 빨리빨리대리전★☎ 1588-8282 시원한 맥주한잔 후엔 10% 적립! 불러주시면 빨리 달려갑니다! (광고) 하이~
무료 거부 08010000008 빨리빨리대리전★☎ 1588-8282 시원한 맥주한잔 후엔 10% 적립! 불러주시면 빨리 달려갑니다!</p>
</div>
</td>
<td>
<p>0</p>
</td>
<td>
<p>0</p>
</td>
<td>
<p class="fwRg c_002c9a">0</p>
</td>
<td>
<p class="fwRg c_002c9a">50</p>
</td>
<td>
<p class="fwRg c_222">0</p>
</td>
<td>
<p class="fwRg c_222">350</p>
</td>
</tr>
<tr>
<td><label for="" class="label">선택</label><input type="checkbox"></td>
<td>
<p>2021-06-10</p>
</td>
<td>
<p>선거</p>
</td>
<td class="tb_tit">
<p>(광고) 하이~ 무료 거부 0801000008 대리운전</p>
<div class="history_hover">
<ul>
<li><img src="/publish/images/content/history_img1.jpg" alt="보낸 이미지1"></li>
<li><img src="/publish/images/content/history_img2.jpg" alt="보낸 이미지2"></li>
<li><img src="/publish/images/content/history_img3.jpg" alt="보낸 이미지3"></li>
</ul>
<p>(광고) 하이~ 무료 거부 08010000008 빨리빨리대리전★☎ 1588-8282 시원한 맥주한잔 후엔 10% 적립! 불러주시면 빨리 달려갑니다! (광고) 하이~
무료 거부 08010000008 빨리빨리대리전★☎ 1588-8282 시원한 맥주한잔 후엔 10% 적립! 불러주시면 빨리 달려갑니다!</p>
</div>
</td>
<td>
<p>0</p>
</td>
<td>
<p>0</p>
</td>
<td>
<p class="fwRg c_002c9a">0</p>
</td>
<td>
<p class="fwRg c_002c9a">50</p>
</td>
<td>
<p class="fwRg c_222">0</p>
</td>
<td>
<p class="fwRg c_222">350</p>
</td>
</tr>
<tr>
<td><label for="" class="label">선택</label><input type="checkbox"></td>
<td>
<p>2021-06-10</p>
</td>
<td>
<p>일반</p>
</td>
<td class="tb_tit">
<p>(광고) 하이~ 무료 거부 0801000008 대리운전</p>
<div class="history_hover">
<p>(광고) 하이~ 무료 거부 08010000008 빨리빨리대리전★☎ 1588-8282 시원한 맥주한잔 후엔 10% 적립! 불러주시면 빨리 달려갑니다! (광고) 하이~
무료 거부 08010000008 빨리빨리대리전★☎ 1588-8282 시원한 맥주한잔 후엔 10% 적립! 불러주시면 빨리 달려갑니다!</p>
</div>
</td>
<td>
<p>0</p>
</td>
<td>
<p>0</p>
</td>
<td>
<p class="fwRg c_002c9a">0</p>
</td>
<td>
<p class="fwRg c_002c9a">50</p>
</td>
<td>
<p class="fwRg c_222">0</p>
</td>
<td>
<p class="fwRg c_222">350</p>
</td>
</tr>
<tr>
<td><label for="" class="label">선택</label><input type="checkbox"></td>
<td>
<p>2021-06-10</p>
</td>
<td>
<p>가입축하포인트</p>
</td>
<td class="tb_tit">
<p>문자포인트 적립</p>
</td>
<td>
<p>0</p>
</td>
<td>
<p>500</p>
</td>
<td>
<p class="fwRg c_002c9a">0</p>
</td>
<td>
<p class="fwRg c_002c9a">500</p>
</td>
<td>
<p class="fwRg c_222">0</p>
</td>
<td>
<p class="fwRg c_222">500</p>
</td>
<td>2024-11-20 13:57:12</td>
<td>119.193.215.98</td>
<td>모바일</td>
</tr>
<tr>
<td>2024-11-20 13:57:12</td>
<td>119.193.215.98</td>
<td>PC</td>
</tr>
<tr>
<td>2024-11-20 13:57:12</td>
<td>119.193.215.98</td>
<td>모바일</td>
</tr>
<tr>
<td>2024-11-20 13:57:12</td>
<td>119.193.215.98</td>
<td>PC</td>
</tr>
<tr>
<td>2024-11-20 13:57:12</td>
<td>119.193.215.98</td>
<td>모바일</td>
</tr>
<tr>
<td>2024-11-20 13:57:12</td>
<td>119.193.215.98</td>
<td>PC</td>
</tr>
<tr>
<td>2024-11-20 13:57:12</td>
<td>119.193.215.98</td>
<td>모바일</td>
</tr>
<tr>
<td>2024-11-20 13:57:12</td>
<td>119.193.215.98</td>
<td>PC</td>
</tr>
<tr>
<td>2024-11-20 13:57:12</td>
<td>119.193.215.98</td>
<td>모바일</td>
</tr>
</tbody>
</table>
</div>
<!-- //로그인 내역 -->
<!-- pagination -->
<ul class="pagination">
<li class="page_first"><button><img src="/publish/images/content/page_first.png" alt=""></button></li>
<li class="page_prev"><button><img src="/publish/images/content/page_prev.png" alt=""></button></li>
@ -819,255 +461,10 @@
<li><button>10</button></li>
<li class="page_next"><button><img src="/publish/images/content/page_next.png" alt=""></button></li>
<li class="page_last"><button><img src="/publish/images/content/page_last.png" alt=""></button></li>
</ul>
</div>
<div class="my_dashboard_cont3 number_set">
<div>
<p class="dashboard_title">대표 발신번호 관리</p>
<div style="margin:0 0 10px;">
<p style="font-weight: 300;">· 등록된 번호 수 <span class="c_002c9a fwMd">1</span>/10개</p>
</div>
<div class="table_wrap">
<table>
<caption>등록일자, 발신번호, 발신번호 명, 상태 정보를 제공하는 표</caption>
<colgroup>
<col style="width: 20%;">
<col style="width: 25%;">
<col style="width: auto;">
<col style="width: 20%;">
</colgroup>
<thead>
<tr>
<th scope="col">등록일자</th>
<th scope="col">발신번호</th>
<th scope="col">발신번호명</th>
<th scope="col">상태</th>
</tr>
</thead>
<tbody>
<tr>
<td>2022-05-20 17:05</td>
<td>010-5705-8729</td>
<td>
<p class="font_ellipsis">정수빈 </p>
</td>
<td><span class="c_002c9a">인증완료</span></td>
</tr>
</tbody>
</table>
</div><button type="button" onclick="location.href='/web/user/sendNumberManage.do';"><img src="/publish/images/content/mypage_plus.png" alt="더보기"></button>
</div>
</div>
<div class="my_dashboard_cont3">
<p class="dashboard_title">최근 발송내역 - 문자</p>
<div class="table_wrap">
<table>
<caption>등록일자, 발신번호, 발신번호 명, 상태 정보를 제공하는 표</caption>
<colgroup>
<col style="width: 10%;">
<col style="width: 15%;">
<col style="width: auto;">
<col style="width: 10%;">
<col style="width: 10%;">
<col style="width: 15%;">
</colgroup>
<thead>
<tr>
<th scope="col">메시지 형태</th>
<th scope="col">발송일시</th>
<th scope="col">내용</th>
<th scope="col">발송건수</th>
<th scope="col">결과</th>
<th scope="col">발신번호</th>
</tr>
</thead>
<tbody>
<tr>
<td>단문</td>
<td>2021-05-04 18:00:09</td>
<td class="font_ellipsis">
<p>아름다운 봄이 가득한 5월입니다.</p>
</td>
<td class="font_ellipsis">
<p>1,000</p>
</td>
<td class="font_ellipsis">
<p class="c_002c9a fwMd">성공</p>
</td>
<td>010-1234-5678</td>
</tr>
<tr>
<td>장문</td>
<td>2021-05-04 18:00:09</td>
<td class="font_ellipsis">
<p>아름다운 봄이 가득한 5월입니다. 아름다운 봄이 가득한 5월입니다.</p>
</td>
<td class="font_ellipsis">
<p>1,000</p>
</td>
<td class="font_ellipsis">
<p class="c_002c9a fwMd">성공</p>
</td>
<td>010-1234-5678</td>
</tr>
<tr>
<td>단문</td>
<td>2021-05-04 18:00:09</td>
<td class="font_ellipsis">
<p>아름다운 봄이 가득한 5월입니다.</p>
</td>
<td class="font_ellipsis">
<p>1,000</p>
</td>
<td class="font_ellipsis">
<p class="font_ellipsis c_e40000 fwMd">실패</p>
</td>
<td>010-1234-5678</td>
</tr>
</tbody>
</table>
</div><button type="button"><img src="/publish/images/content/mypage_plus.png" alt="더보기"></button>
</div>
<div class="my_dashboard_cont3">
<p class="dashboard_title">최근 발송내역 - 알림톡</p>
<div class="table_wrap">
<table>
<caption>등록일자, 발신번호, 발신번호 명, 상태 정보를 제공하는 표</caption>
<colgroup>
<col style="width: 10%;">
<col style="width: 15%;">
<col style="width: auto;">
<col style="width: 10%;">
<col style="width: 10%;">
<col style="width: 15%;">
</colgroup>
<thead>
<tr>
<th scope="col">메시지 형태</th>
<th scope="col">발송일시</th>
<th scope="col">내용</th>
<th scope="col">발송건수</th>
<th scope="col">결과</th>
<th scope="col">대체문자 건수</th>
</tr>
</thead>
<tbody>
<tr>
<td>단문</td>
<td>2021-05-04 18:00:09</td>
<td class="font_ellipsis">
<p>아름다운 봄이 가득한 5월입니다.</p><button class="btnType btnType20">상세보기</button>
</td>
<td class="font_ellipsis">
<p>1,000</p>
</td>
<td class="font_ellipsis">
<p class="c_002c9a fwMd">성공</p>
</td>
<td>0</td>
</tr>
<tr>
<td>장문</td>
<td>2021-05-04 18:00:09</td>
<td class="font_ellipsis">
<p>아름다운 봄이 가득한 5월입니다. 아름다운 봄이 가득한 5월입니다.</p>
</td>
<td class="font_ellipsis">
<p>1,000</p>
</td>
<td class="font_ellipsis">
<p class="c_002c9a fwMd">성공</p>
</td>
<td>0</td>
</tr>
<tr>
<td>단문</td>
<td>2021-05-04 18:00:09</td>
<td class="font_ellipsis">
<p>아름다운 봄이 가득한 5월입니다.</p>
</td>
<td class="font_ellipsis">
<p>1,000</p>
</td>
<td class="font_ellipsis">
<p class="font_ellipsis c_e40000 fwMd">실패</p>
</td>
<td>1</td>
</tr>
</tbody>
</table>
</div><button type="button"><img src="/publish/images/content/mypage_plus.png" alt="더보기"></button>
</div>
<div class="my_dashboard_cont3">
<p class="dashboard_title">최근 발송내역 - 팩스</p>
<div class="table_wrap">
<table>
<caption>등록일자, 발신번호, 발신번호 명, 상태 정보를 제공하는 표</caption>
<colgroup>
<col style="width: 10%;">
<col style="width: 15%;">
<col style="width: auto;">
<col style="width: 10%;">
<col style="width: 10%;">
<col style="width: 15%;">
</colgroup>
<thead>
<tr>
<th scope="col">메시지 형태</th>
<th scope="col">발송일시</th>
<th scope="col">내용</th>
<th scope="col">발송건수</th>
<th scope="col">발송매수</th>
<th scope="col">결과</th>
</tr>
</thead>
<tbody>
<tr>
<td>단문</td>
<td>2021-05-04 18:00:09</td>
<td class="font_ellipsis">
<p>아름다운 봄이 가득한 5월입니다.</p>
</td>
<td class="font_ellipsis">
<p>1,000</p>
</td>
<td>0</td>
<td class="font_ellipsis">
<p class="c_002c9a fwMd">성공</p>
</td>
</tr>
<tr>
<td>장문</td>
<td>2021-05-04 18:00:09</td>
<td class="font_ellipsis">
<p>아름다운 봄이 가득한 5월입니다. 아름다운 봄이 가득한 5월입니다.</p>
</td>
<td class="font_ellipsis">
<p>1,000</p>
</td>
<td>0</td>
<td class="font_ellipsis">
<p class="c_002c9a fwMd">성공</p>
</td>
</tr>
<tr>
<td>단문</td>
<td>2021-05-04 18:00:09</td>
<td class="font_ellipsis">
<p>아름다운 봄이 가득한 5월입니다.</p>
</td>
<td class="font_ellipsis">
<p>1,000</p>
</td>
<td>0</td>
<td class="font_ellipsis">
<p class="font_ellipsis c_e40000 fwMd">실패</p>
</td>
</tr>
</tbody>
</table>
</div><button type="button"><img src="/publish/images/content/mypage_plus.png" alt="더보기"></button>
</ul><!-- pagination -->
</div>
<!-- //보안로그인 -->
</div>
</div>
</div>