pruna1.com Open in urlscan Pro
2606:4700:3033::ac43:c3c6  Public Scan

URL: https://pruna1.com/
Submission: On May 16 via api from US — Scanned from DE

Form analysis 6 forms found in the DOM

<form x-show="currentPage === 'login'" @submit.prevent="login" class="space-y-4 sm:space-y-6">
  <div>
    <h2 class="text-center text-2xl text-nord4">로그인</h2>
    <p class="mt-2 text-center text-sm leading-5 text-nord5 max-w"> 및 <a @click.prevent="currentPage = 'register'" href="#" class="font-medium text-nord13 hover:text-nord8 focus:outline-none focus:underline">계정 등록</a>
    </p>
  </div>
  <div x-show="Object.keys(errors.login).length" class="rounded-md bg-red-50 p-4 text-sm text-red-700" style="display: none;">
    <ul role="list" class="list-disc pl-5 space-y-1">
      <template x-for="error in errors.login">
        <li x-text="error[0]"></li>
      </template>
    </ul>
  </div>
  <div class="text-group">
    <div :class="{ 'bg-red-100': errors.login.email }" class="rounded-b-none">
      <label :class="{ 'text-red-800': errors.login.email }" for="login_email">이메일</label>
      <input x-model="email" :class="{ 'bg-red-100': errors.login.email }" type="text" id="login_email" required="" autocomplete="section-login username">
    </div>
    <div :class="{ 'bg-red-100': errors.login.password }" class="rounded-t-none">
      <label :class="{ 'text-red-800': errors.login.password }" for="login_password">비밀번호</label>
      <input x-model="password" :class="{ 'bg-red-100': errors.login.password }" type="password" id="login_password" required="" autocomplete="section-login current-password">
    </div>
  </div>
  <div class="relative flex items-start justify-between">
    <div class="flex">
      <div class="flex items-center h-5">
        <input x-model="remember" id="login_remember" aria-describedby="remember-me" type="checkbox" class="focus:ring-primary h-4 w-4 text-primary border-gray-300 rounded">
      </div>
      <div class="ml-3 text-sm">
        <label for="login_remember" class="font-medium text-nord4">아이디 기억</label>
      </div>
    </div>
    <div class="text-sm">
      <a @click.prevent="currentPage = 'forget'" href="#" class="font-medium text-nord13 hover:text-nord8 focus:outline-none focus:underline">
                                        비밀번호 찾기
                                    </a>
    </div>
  </div>
  <div class="block w-full rounded-md shadow-sm">
    <button :disable="loading.login" type="submit" class="button-primary button-block" disable="">
      <svg x-show="loading.login" class="animate-spin -ml-1 mr-3 h-4 w-4 text-white" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" style="display: none;">
        <circle class="opacity-25" cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle>
        <path class="opacity-75" fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path>
      </svg> 로그인 </button>
  </div>
</form>

<form x-show="currentPage === 'register'" @submit.prevent="register" class="space-y-4 sm:space-y-6" style="display: none;">
  <div>
    <h2 class="text-center text-2xl text-nord4"> 새 계정 등록 </h2>
    <p class="mt-2 text-center text-sm leading-5 text-nord5 max-w"> 또는 <a @click.prevent="currentPage = 'login'" href="#" class="font-medium text-nord13 hover:text-nord8 focus:outline-none focus:underline">
                                        계정에 로그인
                                    </a>
    </p>
  </div>
  <div x-show="Object.keys(errors.register).length" class="rounded-md bg-red-50 p-4 text-sm text-red-700" style="display: none;">
    <ul role="list" class="list-disc pl-5 space-y-1">
      <template x-for="error in errors.register">
        <li x-text="error[0]"></li>
      </template>
    </ul>
  </div>
  <div class="text-group">
    <div :class="{ 'bg-red-100': errors.register.email }" class="rounded-b-none">
      <label :class="{ 'text-red-800': errors.register.email }" for="register_email">이메일</label>
      <input x-model="email" :class="{ 'bg-red-100': errors.register.email }" type="email" id="register_email" required="" autocomplete="section-register username">
    </div>
    <div :class="{ 'bg-red-100': errors.register.username }" class="rounded-t-none">
      <label :class="{ 'text-red-800': errors.register.username }" for="register_username">사용자 이름</label>
      <input x-model="username" :class="{ 'bg-red-100': errors.register.username }" type="text" id="register_username" required="" autocomplete="section-register username">
    </div>
  </div>
  <div class="text-group">
    <div :class="{ 'bg-red-100': errors.register.password }" class="rounded-b-none">
      <label :class="{ 'text-red-800': errors.register.password }" for="register_password">비밀번호</label>
      <input x-model="password" :class="{ 'bg-red-100': errors.register.password }" type="password" id="register_password" required="" autocomplete="section-register new-password">
    </div>
    <div :class="{ 'bg-red-100': errors.register.password_confirmation }" class="rounded-t-none">
      <label :class="{ 'text-red-800': errors.register.password_confirmation }" for="register_password_confirmation">비밀번호 확인</label>
      <input x-model="password_confirmation" :class="{ 'bg-red-100': errors.register.password_confirmation }" type="password" id="register_password_confirmation" required="" autocomplete="section-register new-password">
    </div>
  </div>
  <div class="block w-full rounded-md shadow-sm">
    <button :disabled="loading.register" type="submit" class="button-primary button-block">
      <svg x-show="loading.register" class="animate-spin -ml-1 mr-3 h-4 w-4 text-white" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" style="display: none;">
        <circle class="opacity-25" cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle>
        <path class="opacity-75" fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path>
      </svg> 등록하다 </button>
  </div>
</form>

<form x-show="currentPage === 'forget'" @submit.prevent="forget" class="space-y-4 sm:space-y-6" style="display: none;">
  <div>
    <h2 class="text-center text-2xl text-nord4">비밀번호 분실?</h2>
    <p class="mt-2 text-center text-sm leading-5 text-nord5 max-w"> 또는 <a @click.prevent="currentPage = 'login'" href="#" class="font-medium text-nord13 hover:text-nord8 focus:outline-none focus:underline">
                                        계정에 로그인
                                    </a>
    </p>
  </div>
  <div x-show="Object.keys(errors.forget).length" class="rounded-md bg-red-50 p-4 text-sm text-red-700" style="display: none;">
    <ul role="list" class="list-disc pl-5 space-y-1">
      <template x-for="error in errors.forget">
        <li x-text="error[0]"></li>
      </template>
    </ul>
  </div>
  <div class="rounded-md bg-emerald-50 p-4" x-show="success.forget" style="display: none;">
    <div class="flex">
      <div class="shrink-0">
        <svg class="h-5 w-5 text-emerald-400" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor" aria-hidden="true">
          <path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z" clip-rule="evenodd"></path>
        </svg>
      </div>
      <div class="ml-3">
        <p class="text-sm font-medium text-emerald-800">비밀번호 재설정 링크를 이메일로 전송했습니다!</p>
      </div>
    </div>
  </div>
  <div x-show="! success.forget" class="text-group">
    <div :class="{ 'bg-red-100': errors.forget.email }">
      <label :class="{ 'text-red-800': errors.forget.email }" for="forget_email">이메일</label>
      <input x-model="email" :class="{ 'bg-red-100': errors.forget.email }" type="email" id="forget_email" required="" autocomplete="section-forget username">
    </div>
  </div>
  <div x-show="! success.forget" class="block w-full rounded-md shadow-sm">
    <button :disabled="loading.forget" type="submit" class="button-primary button-block">
      <svg x-show="loading.forget" class="animate-spin -ml-1 mr-3 h-4 w-4 text-white" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" style="display: none;">
        <circle class="opacity-25" cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle>
        <path class="opacity-75" fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path>
      </svg>암호를 재설정 </button>
  </div>
</form>

<form x-show="currentPage === 'change_password'" @submit.prevent="changePassword" class="space-y-4 sm:space-y-6" style="display: none;">
  <div>
    <h2 class="text-center text-2xl text-nord4">비밀번호 변경</h2>
  </div>
  <div x-show="Object.keys(errors.changePassword).length" class="rounded-md bg-red-50 p-4 text-sm text-red-700" style="display: none;">
    <ul role="list" class="list-disc pl-5 space-y-1">
      <template x-for="error in errors.changePassword">
        <li x-text="error[0]"></li>
      </template>
    </ul>
  </div>
  <div class="rounded-md bg-emerald-50 p-4" x-show="success.changePassword" style="display: none;">
    <div class="flex">
      <div class="shrink-0">
        <svg class="h-5 w-5 text-emerald-400" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor" aria-hidden="true">
          <path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z" clip-rule="evenodd"></path>
        </svg>
      </div>
      <div class="ml-3">
        <p class="text-sm font-medium text-emerald-800">비밀번호 변경됨</p>
      </div>
    </div>
  </div>
  <div x-show="! success.changePassword" class="text-group">
    <div :class="{ 'bg-red-100': errors.changePassword.old_password }" class="rounded-b-none">
      <label :class="{ 'text-red-800': errors.changePassword.old_password }" for="change_password_old_password">기존 비밀번호</label>
      <input x-model="old_password" :class="{ 'bg-red-100': errors.changePassword.old_password }" type="password" id="change_password_old_password" required="" autocomplete="section-change-password current-password">
    </div>
    <div :class="{ 'bg-red-100': errors.changePassword.password }" class="rounded-b-none">
      <label :class="{ 'text-red-800': errors.changePassword.password }" for="change_password_password">새 비밀번호</label>
      <input x-model="password" :class="{ 'bg-red-100': errors.changePassword.password }" type="password" id="change_password_password" required="" autocomplete="section-change-password new-password">
    </div>
    <div :class="{ 'bg-red-100': errors.changePassword.password_confirmation }" class="rounded-t-none">
      <label :class="{ 'text-red-800': errors.changePassword.password_confirmation }" for="change_password_password_confirmation">비밀번호 확인</label>
      <input x-model="password_confirmation" :class="{ 'bg-red-100': errors.changePassword.password_confirmation }" type="password" id="change_password_password_confirmation" required="" autocomplete="section-change-password new-password">
    </div>
  </div>
  <div x-show="! success.changePassword" class="block w-full rounded-md shadow-sm">
    <button :disabled="loading.changePassword" type="submit" class="button-primary button-block">
      <svg x-show="loading.changePassword" class="animate-spin -ml-1 mr-3 h-4 w-4 text-white" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" style="display: none;">
        <circle class="opacity-25" cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle>
        <path class="opacity-75" fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path>
      </svg>비밀번호 변경 </button>
  </div>
</form>

<form @submit.prevent="search($refs.search.value)">
  <div class="sm:container mx-auto px-4">
    <div :class="{ 'pb-2': searchHistory.length, 'pb-4': ! searchHistory.length }" class="flex justify-between items-center">
      <div class="flex rounded-md shadow-sm w-full mx-auto">
        <div class="flex items-stretch grow">
          <input x-ref="search" :placeholder="currentSearchPlaceholderText" type="text" value=""
            class="bg-nord1 appearance-none border-2 border-nord9 rounded-none rounded-l w-full py-2 px-4 text-nord9 leading-tight focus:outline-none focus:bg-nord0 focus:ring-0 focus:border-nord9" maxlength="50">
        </div>
        <button
          class="-ml-px relative inline-flex items-center px-4 py-2 border-2 border-nord9 text-sm whitespace-nowrap leading-5 font-medium rounded-r-md text-norddark bg-nord9 hover:bg-opacity-90 focus:outline-none focus:border-nord8 active:bg-opacity-80 transition ease-in-out duration-150">
          <svg class="h-5 w-5" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
            <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M21 21l-6-6m2-5a7 7 0 11-14 0 7 7 0 0114 0z"></path>
          </svg>
          <span class="ml-2">수색</span>
        </button>
      </div>
    </div>
    <div x-cloak="" x-show="searchHistory.length" class="pb-2">
      <div x-cloak="" class="flex items-start justify-between">
        <div class="line-clamp-1">
          <template x-for="(keyword, index) in searchHistory">
            <span>
              <a x-text="decodeURIComponent(keyword)" @click.prevent="search(decodeURIComponent(keyword))" href="#" class="text-nord13"></a><span x-show="index < searchHistory.length - 1" class="text-nord4">, </span>
            </span>
          </template>
        </div>
        <a @click.prevent="clearSearchHistory" href="#" alt="분명한">
                                <svg xmlns="http://www.w3.org/2000/svg" class="inline h-5 w-5 text-secondary hover:text-primary" fill="none" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2">
                                    <path stroke-linecap="round" stroke-linejoin="round" d="M19 7l-.867 12.142A2 2 0 0116.138 21H7.862a2 2 0 01-1.995-1.858L5 7m5 4v6m4-6v6m1-10V4a1 1 0 00-1-1h-4a1 1 0 00-1 1v3M4 7h16"></path>
                                </svg>
                            </a>
      </div>
    </div>
  </div>
</form>

/index.php/vod/search.html

<form class="w-full mx-auto" action="/index.php/vod/search.html">
  <div class="flex rounded-md shadow-sm w-full mx-auto">
    <div class="relative flex items-stretch grow focus-within:z-10">
      <input name="wd" type="text"
        class="block w-full rounded-none rounded-l-md p-3 border border-gray-300 transition ease-in-out duration-150 sm:leading-5 focus:outline-none focus:border-primary focus:ring focus:ring-nord11 focus:ring-opacity-50 placeholder-gray-400"
        maxlength="50" placeholder="트랜스포머,나루토,어벤져스,스페셜포스: 특수부대 전랑,오퍼레이션 레드 씨">
    </div>
    <button
      class="-ml-px relative inline-flex items-center px-4 py-2 border border-gray-300 text-sm leading-5 font-medium rounded-r-md text-gray-700 bg-gray-50 hover:text-gray-500 hover:bg-white focus:outline-none focus:ring-blue-500 focus:border-blue-300 active:bg-gray-100 active:text-gray-700 transition ease-in-out duration-150">
      <svg class="h-5 w-5 text-gray-400" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
        <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M21 21l-6-6m2-5a7 7 0 11-14 0 7 7 0 0114 0z"></path>
      </svg>
      <span class="ml-2 w-full">검색</span>
    </button>
  </div>
  <div class="history-box w-full mt-2 mx-auto text-left" style="display: none;">
    <div class="flex items-start justify-between">
      <div class="line-clamp-1">
        <div class="history-area"></div>
      </div>
      <a @click.prevent="clearSearchHistory" href="#" alt="검색 비우기">
                <svg xmlns="http://www.w3.org/2000/svg" class="inline h-5 w-5 text-secondary hover:text-primary" fill="none" viewBox="0 0 24 24" stroke="currentColor" stroke-width="2">
                    <path stroke-linecap="round" stroke-linejoin="round" d="M19 7l-.867 12.142A2 2 0 0116.138 21H7.862a2 2 0 01-1.995-1.858L5 7m5 4v6m4-6v6m1-10V4a1 1 0 00-1-1h-4a1 1 0 00-1 1v3M4 7h16"></path>
                </svg>
            </a>
    </div>
  </div>
</form>

Text Content

로그인

및 계정 등록


이메일
비밀번호
아이디 기억
비밀번호 찾기
로그인


새 계정 등록

또는 계정에 로그인


이메일
사용자 이름
비밀번호
비밀번호 확인
등록하다


비밀번호 분실?

또는 계정에 로그인



비밀번호 재설정 링크를 이메일로 전송했습니다!

이메일
암호를 재설정


비밀번호 변경



비밀번호 변경됨

기존 비밀번호
새 비밀번호
비밀번호 확인
비밀번호 변경
PRUNA
수색
한국
메뉴
업그레이드 VIP JAV 시청 최근 업데이트 새로운 출시 무수정 누출 여배우 목록 여배우 순위 MAY 2024 장르 메이커 VR 오늘 가장 많이
본 주별로 가장 많이 본 월별 가장 많이 본 아마추어 SIRO LUXU GANA PRESTIGE PREMIUM S-CUTE ARA 일본노모
무수정 누출 FC2 HEYZO Tokyo Hot 1pondo Caribbeancom Caribbeancompr 10musume
pacopacomama Gachinco XXX-AV 유부녀 베기 야한 4610 야한 0930 중국 AV Madou TWAV Furuke 내
컬렉션 업그레이드 VIP 내 비디오 컬렉션 내 재생 목록 나의 여배우 컬렉션 시청 기록 차단 해제된 URL 더 많은 사이트 同城约炮神器 91暗网
真实重口性虐社区 原创真实乱伦交流 TikTok成人版 免费中文解说AV 섹스 웹캠
섹스 웹캠
JAV 시청
최근 업데이트 새로운 출시 무수정 누출 여배우 목록 여배우 순위 MAY 2024 장르 메이커 VR 오늘 가장 많이 본 주별로 가장 많이 본 월별
가장 많이 본
아마추어
SIRO LUXU GANA PRESTIGE PREMIUM S-CUTE ARA
일본노모
무수정 누출 FC2 HEYZO Tokyo Hot 1pondo Caribbeancom Caribbeancompr 10musume
pacopacomama Gachinco XXX-AV 유부녀 베기 야한 4610 야한 0930
중국 AV
Madou TWAV Furuke
내 컬렉션
업그레이드 VIP 내 비디오 컬렉션 내 재생 목록 나의 여배우 컬렉션 시청 기록
더 많은 사이트
原创真实乱伦交流 免费中文解说AV 91暗网 TikTok成人版 同城约炮神器 真实重口性虐社区
검색

수색
,


모든 검색 일본 AV


검색

 
중국어 자막 무수정 누출 : :

중국어 자막 무수정 누출 NaN: NaN: NaN
 
중국어 자막 무수정 누출 NaN: NaN: NaN
 
중국어 자막 무수정 누출 NaN: NaN: NaN
 
중국어 자막 무수정 누출 NaN: NaN: NaN
 
중국어 자막 무수정 누출 NaN: NaN: NaN
 
중국어 자막 무수정 누출 NaN: NaN: NaN
 
중국어 자막 무수정 누출 NaN: NaN: NaN
 
중국어 자막 무수정 누출 NaN: NaN: NaN
 
2024 중국 일반 : :
가슴이 큰 젊은 여성이 내내 얼굴을 보여주고 너무 섹시해요!
2024 중국 일반 : :
#安奇小宝_미모와 섹시한 검정 스타킹 스커트를 갖춘 아름다운 소녀가 형부를 유혹합니다. 그녀의 보지가 너무 빡빡하고 형부가 조루를 하여
불만족스럽습니다.
2024 중국 일반 : :
세계 최고의 백호 여신은 미녀이다. 그녀는 보지를 열고 분홍색 살덩어리를 드러낸다.
2024 중국 일반 : :
#170가슴모델 아가씨 0
2024 중국 일반 : :
엄청 매력적이고 매력적인 치파오 미녀 니니지
2024 중국 일반 : :
#유지자매 1
2024 중국 일반 : :
#쿄쿄관샤오퉁
0 테스트1번 : :
미대 미녀의 섹스비디오가 쓰레기로 유출됐다
0 테스트1번 : :
상하이의 실제 NTR 현장에서 친구들과 같이 있는 한중 혼혈 소녀
0 테스트1번 : :
물처럼 순하고 최고의 미녀 3인방이 같이하는 고가의 지갑밤, 황제는 남자의 천국을 즐긴다
0 테스트1번 : :
싱가포르 에디슨 사건-2
0 테스트1번 : :
전 여자친구 이별 후 음란 셀카가 쓰레기 남친에 의해 유출됐다.
1990 테스트1번 : :
Holly 자매.Lila는 외국인 교사와 미친 커플을 가지고 있습니다.
0 테스트1번 : :
내 여자친구의 구강 능력이 점점 좋아지고 있으며, 그녀는 보상으로 그녀의 보지를 세게 박습니다.
1990 테스트1번 : :
체크무늬 스커트를 입은 소녀는 부끄러워서 계속 눈꺼풀을 가리고 카메라 앞에서 엿을 당했다.
0 테스트1번 : :
리더를 몰래 사진에 담는 숨겨진 규칙
더 로드
맨 위로


보행인

PRUNA

온라인으로 볼 수 있는 무료 고화질 일본 AV, 다운로드 없음, 고속 재생 지연 없음, 매일 업데이트되는 100,000개 이상의 비디오, 재생
시작 후 광고 없음, 휴대전화, 컴퓨터 및 스마트 TV를 포함한 모든 장치에 대한 지원. 일련 번호, 배우 또는 시리즈 이름으로 비디오를 검색할
수 있습니다. 무료로 회원가입을 하시면 추후에 볼 영상을 모아두실 수 있습니다.




비디오

 * 최근 업데이트
 * 새로운 출시
 * 무수정 누출


수색

 * 배우
 * 장르
 * 메이커


연결

 * 차단 해제된 URL
 * 문의하기
 * 광고문의
 * 이용약관
 * 동영상 업로드


또한보십시오

 * 섹스 웹캠
 * Njav
 * Supjav
 * JerkDolls
 * ThePornDude

© 2024 PRUNA