-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
da-in
committed
Apr 4, 2024
1 parent
5638985
commit f1ce31c
Showing
3 changed files
with
56 additions
and
2 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
<template> | ||
<div class="bg-white w-full h-full"> | ||
<ZHeader class="mt-3"> | ||
<h1 class="text-body-b">개인정보 수집, 이용동의(필수)</h1> | ||
<template v-slot:right> | ||
<img :src="close" alt="닫기" @click="$emit('close')"/> | ||
</template> | ||
</ZHeader> | ||
<div class="px-6 mt-5"> | ||
<div class="text-dark-gray text-body-r"> | ||
<p> | ||
개인정보보호법 제15조(개인정보의 수집, 이용) 및 22조(개인정보주체의 동의)에 의거하여 개인정보 수집 및 이용하고자 합니다. | ||
</p> | ||
<p class="mt-4"> | ||
개인정보보호법에 의거하여 개인정보 수집 및 이용에 따른 동의를 거부할 수 있으나, 동의를 거부할 경우 이벤트 당첨 및 경품 발송이 제한됩니다. | ||
</p> | ||
</div> | ||
<table class="text-[#1E1E1E] border-collapse cell mt-6"> | ||
<tr class="text-caption-b"> | ||
<th class="cell head">수집항목</th> | ||
<th class="cell head">수집목적</th> | ||
<th class="cell head">보유기간</th> | ||
</tr> | ||
<tr class="text-caption-r"> | ||
<td class="cell">[필수] 성명, 연락처, 개인정보 활용 동의 | ||
</td> | ||
<td class="cell">이벤트 경품 발송을 위한 개인정보 수집</td> | ||
<td class="cell">이벤트 경품 발송 완료시까지</td> | ||
</tr> | ||
</table> | ||
</div> | ||
</div> | ||
</template> | ||
<script setup lang="ts"> | ||
import ZHeader from '../../../components/ZHeader.vue' | ||
import close from '../../../assets/close.svg' | ||
</script> | ||
<style scoped> | ||
.cell { | ||
border-width: 1px; | ||
border-color: #DADEE4; | ||
padding: 12px | ||
} | ||
.head { | ||
background-color: #EEF1F5 | ||
} | ||
</style> |