pamukhome.com
Open in
urlscan Pro
2606:4700:3032::ac43:95b2
Public Scan
URL:
https://pamukhome.com/
Submission: On October 01 via api from BE — Scanned from CA
Submission: On October 01 via api from BE — Scanned from CA
Form analysis
6 forms found in the DOMGET https://pamukhome.com/search
<form action="https://pamukhome.com/search" class="input-wrapper" method="get">
<input autocomplete="off" class="form-control" name="query" placeholder="Arama yap..." required="" type="search" value="">
<button class="btn btn-search" title="submit-button" type="submit">
<i class="d-icon-search"></i>
</button>
</form>
GET https://pamukhome.com/search
<form action="https://pamukhome.com/search" class="input-wrapper" method="get">
<input autocomplete="off" class="form-control" name="query" placeholder="Arama yap..." required="" type="search" value="">
<button class="btn btn-search" title="submit-button" type="submit">
<i class="d-icon-search"></i>
</button>
</form>
GET https://pamukhome.com/search
<form action="https://pamukhome.com/search" class="input-wrapper" method="get">
<input autocomplete="off" class="form-control" name="query" placeholder="Arama yap..." required="" type="search" value="">
<button class="btn btn-search" title="submit-button" type="submit">
<i class="d-icon-search"></i>
</button>
</form>
POST https://pamukhome.com/api/popup-post
<form action="https://pamukhome.com/api/popup-post" method="post">
<input type="hidden" name="_token" value="azbLmCeS8Ej8rRYWfPkEsIc1EaUeOPng4qmV3fvE" autocomplete="off">
</form>
GET https://wa.me/905455317351
<form class="send-with-whatsapp" action="https://wa.me/905455317351" method="get">
<input type="hidden" class="text-part" data-first-part="İlgili Ürün:" value="İlgili Ürün: ">
<input type="hidden" name="text">
<i class="ksicon whatsapp-2"></i>
<div>
<input type="text" class="text-part" value="" placeholder="Whatsapp'tan bilgi alın">
<button type="submit"><i class="ksicon paper-plane"></i></button>
</div>
</form>
<form class="add-product-variation-to-cart-form">
<div class="product-price">
<ins class="price" style="text-decoration: none" x-text="formatPrice(product.price, (product.currency ? product.currency.symbol : '₺'))">₺ 0,00</ins>
<template x-if="product.discounted_price">
<del class="old-price" x-text="formatPrice(product.normal_price, product.currency.symbol)"></del>
</template>
</div>
<template x-for="product_description in product.product_descriptions">
<p class="product-short-desc" x-html="product_description.text"></p>
</template>
<div class="variations">
<template x-for="item in product.variation_tree">
<div class="product-form product-color variation">
<span x-text="item.variation.name"></span>
<template x-for="variation_option in item.variation_options">
<div>
<label>
<template x-if="item.variation.type === 'color'">
<span class="variation-option-color" :style="{backgroundColor: variation_option.primary_color}"></span>
</template>
<template x-if="item.variation.type === 'image'">
<span>
<template x-if="variation_option.image">
<img :src="variation_option.image.url" class="variation-option-image">
</template>
<template x-if="!variation_option.image">
<span x-text="variation_option.name" class="variation-option-standard"></span>
</template>
</span>
</template>
<template x-if="item.variation.type === 'product_photo'">
<span>
<template x-if="variation_option.product_photo_url">
<img :src="variation_option.product_photo_url" class="variation-option-image">
</template>
<template x-if="!variation_option.product_photo_url">
<span x-text="variation_option.name" class="variation-option-standard"></span>
</template>
</span>
</template>
<template x-if="item.variation.type === 'standard'">
<span x-text="variation_option.name" class="variation-option-standard"></span>
</template>
<input type="radio" :data-variation-id="item.variation.id" :name="'variation[' + item.variation.id + ']'" :value="variation_option.id" :checked="variation_option.is_checked"
@change="App.prototype.handleVariationChanges($($event.target), JSON.parse(product.product_variation_data_as_json), 0, product)">
</label>
</div>
</template>
</div>
</template>
</div>
<template x-for="feature in product.features?.filter(feature => feature.type === 'choose_one')">
<div class="form-group">
<label x-text="feature.name"></label>
<select class="form-control" :name="'features[' + feature.unique_id + ']'" :required="feature.is_required">
<option value="" x-text="translates.choose"></option>
<template x-for="option in feature.options">
<option :value="option.unique_id" x-text="option.name"></option>
</template>
</select>
</div>
</template>
<template x-for="feature in product.features?.filter(feature => feature.type === 'multiple')">
<div class="form-group">
<template x-for="option in feature.options">
<div class="form-checkbox">
<input type="checkbox" :name="'features[' + feature.unique_id + '][]'" class="custom-checkbox" :id="option.unique_id" :value="option.unique_id" @change="App.prototype.checkBoxChanged(feature.unique_id)">
<label :for="option.unique_id" class="form-control-label">
<span x-text="option.name"></span>
<template x-if="option.price > 0">
<span x-text="'(+' + option.price + ' ' + translates.currency_code + ')'"></span>
</template>
</label>
</div>
</template>
</div>
</template>
<template x-for="product_order_input in product.product_order_inputs">
<div>
<label x-text="product_order_input.name"></label>
<input class="form-control" type="text" :name="'order_inputs[' + product_order_input.unique_id + ']'" :required="product_order_input.is_required">
</div>
</template>
<hr class="product-divider">
<div class="product-form product-qty">
<div class="product-form-group">
<div class="input-group mr-2">
<button type="button" class="quantity-minus d-icon-minus" @click="quantity--"></button>
<input class="form-control" type="number" name="quantity" x-model="quantity" min="1" :max="product.stock_maximum_order ?? 100000" max="100000">
<button type="button" class="quantity-plus d-icon-plus" @click="quantity++"></button>
</div>
<button type="submit" class="btn-product btn-cart text-normal ls-normal font-weight-semi-bold" :disabled="isSubmitButtonDisabled(product)" :data-out-of-stock="product.is_active && product.stock === 0" data-out-of-stock="">
<i class="d-icon-bag"></i>
<span class="in-stock">Sepete Ekle</span>
<span class="out-of-stock">Tükenmiş</span>
</button>
<input type="hidden" class="product-uid-input" name="product_unique_id" :value="product.unique_id">
<input type="checkbox" name="redirect" value="https://pamukhome.com/basket" class="d-none">
<button type="submit" class="btn-product btn-cart text-normal ls-normal font-weight-semi-bold buy-now" :disabled="isSubmitButtonDisabled(product)">
<i class="d-icon-bag"></i>Hemen Al</button>
</div>
</div>
</form>
Text Content
(545) 531 73 51 Mağaza Bilgileri ESRE EV TEKSTILI WHATSAPP: (545) 531 73 51 Sepet: 0,00 ₺ 0 SEPET kapatSepet SEPETINIZ ŞU ANDA BOŞ Alışverişinizi tamamlamak için sepetinize ürün ekleyin. Tüm Kategoriler * Tüm Kategoriler * YATAK ÖRTÜSÜ & PİKE * Pamuk Pike & Pike Takımı * Marica & Valeria Çift K. Pike Takımı * UYKU SETİ YORGAN & YASTIK * Welsoft Yorgan * Silikon Yorgan * Silikon Yastık * Hurç * Battaniye & Battaniye Seti * HAVLU BORNOZ & MASA ÖRTÜSÜ * Çocuk & Genç Bornozu * Bornoz * Banyo Havlusu & Hamam Seti * Masa Örtüsü Sofra Bezi * Mutfak Havlusu * Ayak Havlusu, Paspası * El Yüz Havlusu * Aile Bornoz Seti * 4 MEVSİM SET * Çift Kişilik 4 Mevsim * Tek Kişilik 4 Mevsim * KUMAŞ LASTİKLİ ÇARŞAF * Kapaklı Yastık Kılıfı * Çetinhome Lastikli Çarşaf * ALEZ GRUBU * Kenar Lastikli Alez * Yastık Alezi * Fitted Alez * CLASY * Clasy Yorgan & Uyku Seti * Clasy Yatak Örtüsü & Pike Takımı * Clasy Nevresim Takımı * NEVRESİM TAKIMI * Çetinhome Ranforce Nevresim Takımı * Çetinhome Pamuk Saten Nevresim Takımı * Çetinhome Akfil Nevresim Takımı * Beğenal Çift K. Saten Nevresim Takımı * Beğenal Ranforce Nevresim Takımı * Fırsat Ürünleri * * YATAK ÖRTÜSÜ & PİKE * Pamuk Pike & Pike Takımı * Marica & Valeria Çift K. Pike Takımı * UYKU SETİ YORGAN & YASTIK * Welsoft Yorgan * Silikon Yorgan * Silikon Yastık * Hurç * Battaniye & Battaniye Seti * HAVLU BORNOZ & MASA ÖRTÜSÜ * Çocuk & Genç Bornozu * Bornoz * Banyo Havlusu & Hamam Seti * Masa Örtüsü Sofra Bezi * Mutfak Havlusu * Ayak Havlusu, Paspası * El Yüz Havlusu * Aile Bornoz Seti * 4 MEVSİM SET * Çift Kişilik 4 Mevsim * Tek Kişilik 4 Mevsim * KUMAŞ LASTİKLİ ÇARŞAF * Kapaklı Yastık Kılıfı * Çetinhome Lastikli Çarşaf * KATEGORILER * YATAK ÖRTÜSÜ & PİKE * UYKU SETİ YORGAN & YASTIK * HAVLU BORNOZ & MASA ÖRTÜSÜ * 4 MEVSİM SET * KUMAŞ LASTİKLİ ÇARŞAF * ALEZ GRUBU * CLASY * NEVRESİM TAKIMI * Fırsat Ürünleri KURUMSAL * Çerez Politikası * Mesafeli Satış Sözleşmesi * Açık Rıza Beyanı * KVKK Aydınlatma Metni * Değişim ve İade Politikası * Site Haritası * Hakkımızda/İletişim Bu e-ticaret sitesi Kolay Sipariş E-Ticaret Paketleri ile hazırlanmıştır. Anasayfa Paylaş Sepetim Arama Menü * Anasayfa * Kategoriler * YATAK ÖRTÜSÜ & PİKE * Pamuk Pike & Pike Takımı * Marica & Valeria Çift K. Pike Takımı * UYKU SETİ YORGAN & YASTIK * Welsoft Yorgan * Silikon Yorgan * Silikon Yastık * Hurç * Battaniye & Battaniye Seti * HAVLU BORNOZ & MASA ÖRTÜSÜ * Çocuk & Genç Bornozu * Bornoz * Banyo Havlusu & Hamam Seti * Masa Örtüsü Sofra Bezi * Mutfak Havlusu * Ayak Havlusu, Paspası * El Yüz Havlusu * Aile Bornoz Seti * 4 MEVSİM SET * Çift Kişilik 4 Mevsim * Tek Kişilik 4 Mevsim * KUMAŞ LASTİKLİ ÇARŞAF * Kapaklı Yastık Kılıfı * Çetinhome Lastikli Çarşaf * ALEZ GRUBU * Kenar Lastikli Alez * Yastık Alezi * Fitted Alez * CLASY * Clasy Yorgan & Uyku Seti * Clasy Yatak Örtüsü & Pike Takımı * Clasy Nevresim Takımı * NEVRESİM TAKIMI * Çetinhome Ranforce Nevresim Takımı * Çetinhome Pamuk Saten Nevresim Takımı * Çetinhome Akfil Nevresim Takımı * Beğenal Çift K. Saten Nevresim Takımı * Beğenal Ranforce Nevresim Takımı * Fırsat Ürünleri * Mağaza Bilgileri * Mağazayı paylaş * Çerez Politikası * Mesafeli Satış Sözleşmesi * Açık Rıza Beyanı * KVKK Aydınlatma Metni * Değişim ve İade Politikası Form gönderildi. Barkod: 12345670 Kategori: ₺ 0,00 -------------------------------------------------------------------------------- Sepete Ekle Tükenmiş Hemen Al -------------------------------------------------------------------------------- Ürünü Paylaş: Çerezler Daha iyi hizmet sunabilmek için sitemizde çerezler kullanılmaktadır. Çerez tercihlerinizi düzenleyebilir veya sitemizde gezinmeye devam ederek çerez kullanımını kabul etmiş sayılırsınız. Tercihler Tamam 取消 确认 Web sitemizin temel özelliklerinden yararlanmak için lütfen tarayıcınızın JavaScript özelliğini aktif ediniz. Kullanmakta olduğunuz cihaz/web tarayıcısı çerezleri desteklemiyor yada bloke ediyor. Sistemin temel özelliklerinden yararlanabilmek için çerez destekleyen bir tarayıcı kullanmalısınız. Çerez politikamız hakkında daha fazla bilgi almak için tıklayınız.