www.petiteamelie.co.uk Open in urlscan Pro
3.127.99.179  Public Scan

Submitted URL: http://www.petiteamelie.co.uk/
Effective URL: https://www.petiteamelie.co.uk/
Submission: On February 26 via manual from GB — Scanned from GB

Form analysis 6 forms found in the DOM

GET https://www.petiteamelie.co.uk/catalogsearch/result

<form class="form minisearch" id="search_mini_form" action="https://www.petiteamelie.co.uk/catalogsearch/result" method="get">
  <div class="relative">
    <label class="sr-only" for="search"> Search </label>
    <input id="search" x-on:input.debounce="getSearchResults()" x-ref="searchInput" type="search" class="input-text pl-8" autocapitalize="off" autocomplete="off" autocorrect="off" name="q" value="" placeholder="Search products" maxlength="128">
    <div class="absolute inset-y-0 left-0 items-center flex border-b border-primary">
      <span class="webfont-search text-24px"></span>
    </div>
  </div>
  <div id="search_autocomplete" class="search-autocomplete relative w-full" x-show="show" style="display:none;">
    <div class="absolute bg-white border border-gray-lightest z-50 -top-px w-350px ">
      <template x-for="searchResult in searchResults">
        <div>
          <template x-if="searchResult.url">
            <a class="w-full block hover:bg-gray" :href="searchResult.url" :title="searchResult.title">
                                <div class="grid grid-cols-4 gap-4 p-3">
                                    <div class="">
                                        <img :src="searchResult.image" class="inline-block">
                                    </div>
                                    <div class="col-span-3 flex items-center">
                                        <span class="text-sm" x-text="searchResult.title"></span>
                                    </div>
                                </div>
                            </a>
          </template>
          <template x-if="searchResult.type == 'term'">
            <a class="w-full block hover:bg-gray-light" x-bind:href="'https://www.petiteamelie.co.uk/catalogsearch/result?q=' + searchResult.title" :title="searchResult.title">
                                <div class="grid grid-cols-4 gap-4 p-2">
                                    <div class=""></div>
                                    <div class="col-span-3">
                                        <span class="text-sm" x-text="searchResult.title"></span>
                                        <span class="text-sm" x-text="searchResult.results"></span>
                                    </div>
                                </div>
                            </a>
          </template>
        </div>
      </template>
    </div>
  </div>
</form>

POST

<form class="form form-login" method="post" @submit.prevent="submitForm();" id="login-form">
  <div class="fieldset login">
    <div class="field email required">
      <label class="label" for="customer-email">
        <span>Email Address</span>
      </label>
      <div class="control">
        <input name="username" x-ref="customer-email" type="email" required="" class="form-input input-text">
      </div>
    </div>
    <div class="field password required">
      <label for="pass" class="label">
        <span>Password</span>
      </label>
      <div class="control">
        <input name="password" type="password" class="form-input input-text" required="" x-ref="customer-password">
      </div>
    </div>
    <input name="context" type="hidden" value="checkout">
    <div class="actions-toolbar flex justify-between pt-6 pb-2 items-center">
      <button type="submit" class="inline-flex btn btn-primary"> Sign In </button>
      <a href="https://www.petiteamelie.co.uk/customer/account/forgotpassword">
                                        Forgot Your Password?                                    </a>
    </div>
  </div>
</form>

POST

<form class="form form-login" method="post" @submit.prevent="submitForm();" id="login-form" data-cy="sing-in-view__form">
  <div class="fieldset login">
    <div class="field email required">
      <div class="control mb-3">
        <input name="username" x-ref="customer-email" type="email" required="" class="form-input input-text z-10 bg-transparent" placeholder=" " data-cy="sing-in-view__email">
        <label class="label dynamic-label" for="customer-email">
          <span>Email</span>
        </label>
      </div>
    </div>
    <div class="field password required relative">
      <div class="control mb-3">
        <input name="password" :type="showPassword ? 'text' : 'password'" class="form-input input-text z-10 bg-transparent" required="" x-ref="customer-password" placeholder=" " data-cy="sing-in-view__password" type="password">
        <label for="pass" class="label dynamic-label">
          <span>Password</span>
        </label>
        <div class="absolute right-2 top-0 z-20 cursor-pointer">
          <span aria-label="Show password" @click="showPassword = !showPassword" :class="showPassword ? 'webfont-eye_close' : 'webfont-eye'" class="text-20px webfont-eye" data-cy="sing-in-view__show-password"></span>
        </div>
      </div>
    </div>
    <input name="context" type="hidden" value="checkout">
    <div class="flex flex-col justify-between items-center">
      <a class="text-left font-normal text-14px block w-full cursor-pointer pb-4" @click="$store.signInPopup.setView('recoverPasswordView')" data-cy="sing-in-view__forgot-password-button">
                        Forgot password?                    </a>
      <button type="submit" class="btn-secondary text-center py-2 font-normal" :disabled="$store.popup.signInPopup.loading" data-cy="sing-in-view__sing-in-button"> Sign In </button>
    </div>
  </div>
</form>

POST https://www.petiteamelie.co.uk/customer/account/createpost

<form class="form create account form-create-account" action="https://www.petiteamelie.co.uk/customer/account/createpost" x-data="initForm()" id="accountcreate" @submit.prevent="doRegister()" method="post" enctype="multipart/form-data"
  autocomplete="off">
  <input name="form_key" type="hidden" value="VK4fIPz6UK7MoXPN">
  <p class="text-redSale" x-text="errorMessage" x-show="displayErrorMessage" style="display: none;"></p>
  <div class="control">
    <input type="hidden" value="" class="form-input" name="g-recaptcha-response">
  </div>
  <div>
    <fieldset>
      <div class="field w-full field-name-firstname required">
        <div class="control mb-3">
          <input type="text" id="firstname" name="firstname" value="" placeholder=" " required="" title="First Name" class="form-input-required form-input input-text z-10 bg-transparent required-entry">
          <label class="label dynamic-label" for="firstname">
            <span> First Name </span>
          </label>
        </div>
      </div>
      <div class="field w-full field-name-lastname required">
        <div class="control mb-3">
          <input type="text" id="lastname" name="lastname" placeholder=" " required="" value="" title="Last Name" class="form-input-required form-input input-text z-10 bg-transparent required-entry">
          <label class="label dynamic-label" for="lastname">
            <span> Last Name </span>
          </label>
        </div>
      </div>
    </fieldset>
    <fieldset>
      <div class="field required">
        <div class="control mb-3">
          <input type="email" name="email" autocomplete="email" id="register_email_address" required="" value="" title="Email" placeholder=" " class="form-input-required form-input input-text z-10 bg-transparent">
          <label for="email_address" class="label dynamic-label">
            <span> Email </span>
          </label>
        </div>
      </div>
      <div class="field">
        <div class="control mb-3">
          <input type="password" name="password" id="register_password" title="Password" minlength="8" class="form-input-required form-input input-text z-10 bg-transparent" placeholder=" " required="" autocomplete="off">
          <label for="password" class="label dynamic-label">
            <span>Password</span>
          </label>
        </div>
      </div>
      <div class="field">
        <div class="control mb-3">
          <input type="password" name="password_confirmation" title="Confirm Password" id="password-confirmation" placeholder=" " required="" minlength="8" class="form-input input-text z-10 bg-transparent" autocomplete="off">
          <label for="password-confirmation" class="dynamic-label">
            <span> Confirm Password </span>
          </label>
        </div>
      </div>
    </fieldset>
  </div>
  <div class="field choice newsletter flex items-center mb-3">
    <input type="checkbox" name="is_subscribed" title="Sign Up for Newsletter" id="is_subscribed" class="checkbox mr-3" value="1" :checked="isSubscriptionChecked ? true : false" :class="isSubscriptionChecked ? 'form-input-required' : ''"
      @click="isSubscriptionChecked = !isSubscriptionChecked">
    <label for="is_subscribed" class="label block">
      <span> I agree to receive newsletters with marketing material from Petite Amélie. I understand that I can unsubscribe from the newsletter at any time by using the unsubscribe link in the email or by contacting Petite Amélie directly. </span>
    </label>
  </div>
  <div class="field choice flex items-center mb-6">
    <input type="checkbox" name="is_privacy_policy" title="Privacy Policy agreement" value="1" id="is_privacy_policy" required="" class="checkbox mr-3">
    <label for="is_privacy_policy" class="label block">
      <div data-content-type="html" data-appearance="default" data-element="main" data-decoded="true"><span>I have read and understood the information on the processing of my personal data. See the
          <strong><a href="/privacy-policy">Privacy statement</a></strong></span></div>
    </label>
  </div>
  <div>
    <button type="submit" class="action submit button btn btn-secondary py-2 font-normal" title="Create an Account" :disabled="$store.popup.signInPopup.loading"><span>Create an Account</span>
    </button>
  </div>
  <p class="mt-3 pb-0 text-11px text-gray-600"> This form is protected by reCAPTCHA - the <a class="underline" href="https://policies.google.com/privacy" target="_blank" rel="noopener">Google Privacy Policy</a> and
    <a class="underline" href="https://policies.google.com/terms" target="_blank" rel="noopener">Terms of Service</a> apply.</p>
</form>

<form id="user_forgotpassword" x-data="initRecoveryPasswordForm()" @submit.prevent="doRecover()">
  <p class="text-redSale" x-text="errorMessage" x-show="displayErrorMessage" style="display: none;"></p>
  <p class="text-acceptColor" x-text="successMessage" x-show="displaySuccessMessage" style="display: none;"></p>
  <input name="form_key" type="hidden" value="VK4fIPz6UK7MoXPN"> <input type="hidden" name="formId" value="user_forgotpassword">
  <div class="control">
    <input type="hidden" value="" class="form-input" name="g-recaptcha-response">
  </div>
  <fieldset class="fieldset">
    <div class="text-secondary-darker mb-8">Please enter your email address below. You will receive a link to reset your password.</div>
    <div class="field email required">
      <div class="control mb-3">
        <input type="email" name="email" alt="email" id="email_address" class="form-input form-input input-text z-10 bg-transparent" placeholder=" " required="" value="">
        <label for="email_address" class="label dynamic-label">
          <span>Email</span>
        </label>
      </div>
    </div>
  </fieldset>
  <div>
    <button class="btn btn-secondary font-normal" :disabled="$store.popup.signInPopup.loading">
      <span>Reset My Password</span>
    </button>
  </div>
  <p class="mt-3 pb-0 text-11px text-gray-600"> This form is protected by reCAPTCHA - the <a class="underline" href="https://policies.google.com/privacy" target="_blank" rel="noopener">Google Privacy Policy</a> and
    <a class="underline" href="https://policies.google.com/terms" target="_blank" rel="noopener">Terms of Service</a> apply.</p>
</form>

POST https://www.petiteamelie.co.uk/newsletter/subscriber/newAction

<form class="form form-newsletter" action="https://www.petiteamelie.co.uk/newsletter/subscriber/newAction" method="post" id="newsletter-form" enctype="multipart/form-data" x-data="newsletterForm('newsletter-form')"
  @submit.prevent="submitForm('newsletter')" autocomplete="off" x-subscribe="" data-cy="newsletter-form">
  <input name="form_key" type="hidden" value="VK4fIPz6UK7MoXPN">
  <div class="control">
    <input type="hidden" value="" class="form-input" name="g-recaptcha-response">
  </div>
  <div class="container mx-auto relative">
    <div class="form-newsletter__msg hidden">
      <h3 class="newsletter-msg-title text-center uppercase text-32px p-0"></h3>
      <p class="newsletter-msg text-center text-20px p-0 mb-10" data-cy="newsletter-popup__msg"></p>
      <div class="w-full text-center">
        <button type="button" class="btn btn-primary w-full mx-auto mb-4 md:max-w-2-in-12 md:mb-0" @click.prevent="togglePopup('newsletter')" data-cy="newsletter-popup__toggle-button"> Close </button>
      </div>
    </div>
    <div class="form-newsletter__content grid grid-cols-1 md:auto-rows-auto md:gap-x-6">
      <div class="order-1">
        <h2 class="my-2 text-20px">NEWSLETTER</h2>
        <p class="text-14px">Join our community and be the first to know about all new products &amp; promotions</p>
      </div>
      <div class="order-3">
        <h3 class="my-2 text-20px">INFORMATION CHILD (OPTIONAL)</h3>
        <p class="text-14px">Enter name and date of birth of your children and receive personalised offers by e-mail.</p>
      </div>
      <div class="order-2 grid grid-cols-2 auto-rows-min pt-2 mb-0 md:col-span-1">
        <h3 class="col-span-2 mb-2">My Data</h3>
        <div class="mr-2">
          <label for="email"> Email </label>
          <input type="email" name="email" x-model="formData.email" class="input-text" autocomplete="email" maxlength="64" required="" placeholder=" " data-cy="newsletter-popup__email-input">
        </div>
        <div class="ml-2" "="">
                    <label for=" subscriber_name"> First Name </label>
          <input type="text" name="subscriber_name" x-model="formData.subscriber_name" class="input-text" autocomplete="name" maxlength="64" required="" placeholder=" " data-cy="newsletter-popup__name-input">
        </div>
        <div class="col-span-2 mt-4 leading-4 flex flex-col items-start"></div>
      </div>
      <div class="order-4" data-cy="newsletter-popup__children-component">
        <template x-for="(child, id) in formData.children" :key="id">
          <div class="grid grid-cols-2 col-span-2 mt-6">
            <h3 class="col-span-2 mb-2" x-text="'Child #' + (child.id + 1)"></h3>
            <div class="mr-2">
              <label x-show="child.id === 0"> Date of Birth (optional) </label>
              <input type="date" :name="'children[' + child.id + '][birth_date]'" x-model="formData.children[child.id].birth_date" class="input-text input-birth" :placeholder="child.id !== 0 &amp;&amp; 'Date of Birth (optional)'"
                data-cy="newsletter-popup__children-date-input">
            </div>
            <div class="ml-2">
              <label x-show="child.id === 0"> Name Of Child (optional) </label>
              <input type="text" :name="'children[' + child.id + '][name]'" x-model="formData.children[child.id].name" class="input-text" maxlength="64" :placeholder="child.id !== 0 &amp;&amp; &quot;Name Of Child (optional)&quot;"
                data-cy="newsletter-popup__children-name-input">
            </div>
          </div>
        </template>
        <div class="grid grid-cols-2 col-span-2 mt-6">
          <h3 class="col-span-2 mb-2" x-text="'Child #' + (child.id + 1)">Child #1</h3>
          <div class="mr-2">
            <label x-show="child.id === 0"> Date of Birth (optional) </label>
            <input type="date" :name="'children[' + child.id + '][birth_date]'" x-model="formData.children[child.id].birth_date" class="input-text input-birth" :placeholder="child.id !== 0 &amp;&amp; 'Date of Birth (optional)'"
              data-cy="newsletter-popup__children-date-input" name="children[0][birth_date]">
          </div>
          <div class="ml-2">
            <label x-show="child.id === 0"> Name Of Child (optional) </label>
            <input type="text" :name="'children[' + child.id + '][name]'" x-model="formData.children[child.id].name" class="input-text" maxlength="64" :placeholder="child.id !== 0 &amp;&amp; &quot;Name Of Child (optional)&quot;"
              data-cy="newsletter-popup__children-name-input" name="children[0][name]">
          </div>
        </div>
        <div class="mt-4 leading-4 field choice newsletter flex items-start">
          <input type="checkbox" name="newsletter_consent" title="Sign Up for Newsletter" id="newsletter_consent" class="checkbox mr-3" value="1" required="">
          <label for="newsletter_consent" class="label block">
            <small class="block newsletter-popup__consent"> I agree to receive newsletters with marketing material from Petite Amélie and that Petite Amélie may process my personal data for this purpose and as further described in the
              <a href="/privacy-policy" target="_blank">Privacy Policy</a>. I understand that I can unsubscribe from the newsletter at any time by using the unsubscribe link in the email or by contacting Petite Amélie directly. </small>
          </label>
        </div>
      </div>
      <div class="order-5 flex flex-col mt-8 md:flex-row">
        <button type="button" class="btn btn-secondary font-normal w-full order-2 md:ml-5 md:max-w-2-in-12" @click.prevent="addChildButton()" data-cy="newsletter-popup__add-button" :disabled="!canAddChild()" disabled="disabled"> Add Extra Child
        </button>
        <button type="submit" class="btn btn-primary font-normal w-full mb-4 order-1 md:max-w-2-in-12 md:mb-0" data-cy="newsletter-submit-button"> sign me up </button>
      </div>
    </div>
    <p class="mt-3 pb-0 text-11px text-gray-600"> This form is protected by reCAPTCHA - the <a class="underline" href="https://policies.google.com/privacy" target="_blank" rel="noopener">Google Privacy Policy</a> and
      <a class="underline" href="https://policies.google.com/terms" target="_blank" rel="noopener">Terms of Service</a> apply.</p>
    <style>
      .popup-content--newsletter,
      .popup-content--newsletterAuto {
        background: rgba(255, 255, 255, 0.9);
      }

      .popup-content--newsletter input,
      .popup-content--newsletterAuto input {
        background: none;
      }
    </style>
    <script>
      function newsletterForm(formId) {
        return {
          formData: {
            children: [{
              id: 0,
              name: '',
              date: ''
            }]
          },
          today: new Date().toISOString().split("T")[0],
          errors: 0,
          displayErrorMessage: false,
          errorMessage: "",
          canAddChild() {
            const children = this.formData.children;
            const childrenLength = children.length;
            const child = children[childrenLength - 1];
            return this.isChildExists(child) && childrenLength < 5;
          },
          addChildButton() {
            const children = this.formData.children;
            if (this.canAddChild()) {
              children.push({
                id: children.length
              });
            }
          },
          togglePopup(popupId) {
            Spruce.store('popup').toggleShow(popupId);
          },
          submitForm(popupId) {
            const $form = document.querySelector('#' + formId);
            const url = $form.getAttribute('action');
            let self = this;
            if (!this.hasCaptchaToken) {
              this.errors = 1;
              var $this = this;
              const recaptchaUrl = "https://www.google.com/recaptcha/api.js?render=6LfszpQUAAAAAGokOvgXqj6VBHVDo1iy6anNDamt";
              const executeGreCaptcha = () => {
                grecaptcha.ready(function() {
                  grecaptcha.execute('6LfszpQUAAAAAGokOvgXqj6VBHVDo1iy6anNDamt', {
                    action: 'submit'
                  }).then(function(token) {
                    var $recaptchaResponseInput = $form.querySelector('input[name="g-recaptcha-response"]');
                    if ($recaptchaResponseInput != null) {
                      $recaptchaResponseInput.value = token;
                      $this.errors = 0;
                      $this.hasCaptchaToken = 1;
                      $this.submitForm();
                    } else {
                      $this.errors = 1;
                      if ($this.setErrorMessages) {
                        $this.setErrorMessages(['Your form does not have the required fields for recaptcha to work.'])
                        $this.displayErrorMessage = true;
                      }
                    }
                  });
                })
              }
              if (typeof window.grecaptcha !== 'undefined') {
                executeGreCaptcha();
              } else {
                let script = document.createElement('script');
                script.setAttribute('type', 'text/javascript');
                script.setAttribute('src', recaptchaUrl);
                document.head.appendChild(script);
                script.addEventListener("load", executeGreCaptcha, false);
              }
            }
            if (this.errors === 0) {
              Spruce.store('popup').setLoading(popupId, true);
              const msgElement = $form.querySelector('.form-newsletter__msg');
              const contentElement = $form.querySelector('.form-newsletter__content');
              const msgTitle = $form.querySelector('.newsletter-msg-title');
              const msgText = $form.querySelector('.newsletter-msg');
              var request = new XMLHttpRequest();
              request.open("POST", url);
              request.send(new FormData($form));
              request.onload = function() {
                Spruce.store('popup').setLoading(popupId, false);
                msgElement.classList.remove('hidden');
                contentElement.classList.add('hidden');
                if (request.status != 201 || (typeof request.displayErrorMessage !== "undefined" && request.displayErrorMessage)) {
                  msgTitle.innerHTML = "Something went wrong.";
                  if (request.status === 400) {
                    msgText.innerHTML = request.response.replaceAll('"', '');
                  }
                  window.setTimeout(() => {
                    msgElement.classList.add('hidden');
                    contentElement.classList.remove('hidden');
                    msgText.innerHTML = '';
                    msgTitle.innerHTML = '';
                  }, 5000);
                  this.errorMessage = request.response;
                  this.displayErrorMessage = true;
                } else {
                  msgTitle.innerHTML = "Thank You!";
                  msgText.innerHTML = "You are now subscribed to the newsletter and will receive the confirmation email in your inbox shortly.";
                  window.setTimeout(() => {
                    self.formData.children = [{
                      id: 0,
                      name: '',
                      date: ''
                    }];
                  }, 200);
                  window.setTimeout(() => {
                    msgElement.classList.add('hidden');
                    contentElement.classList.remove('hidden');
                    msgText.innerHTML = '';
                    msgTitle.innerHTML = '';
                    if (Spruce.store('popup')[popupId].show) {
                      Spruce.store('popup').toggleShow(popupId);
                    }
                    $form.reset();
                  }, 4000);
                }
              }
            }
          },
          isChildExists(child) {
            return child && child.name !== undefined && child.name !== '';
          }
        }
      }
    </script>
  </div>
</form>

Text Content

This website uses cookies

We use cookies and similar techniques to provide you with a better and more
personalized service. In addition to functional cookies, which make the website
work properly, we also place analytical cookies to improve our website.
Additionally, we place personal cookies so that we and third parties can track
your internet behaviour and show personal content. Click on 'accept all' to give
permission to place all types of cookies or click on ‘settings’ to make your own
choice. If you choose to refuse, we will only place necessary cookies. Read more
about our cookie statement Cookie settings.

Show detailsReject Accept all cookies

Show details

We use cookies and similar techniques to provide you with a better and more
personalized service. In addition to functional cookies, which make the website
work properly, we also place analytical cookies to improve our website.
Additionally, we place personal cookies so that we and third parties can track
your internet behaviour and show personal content.

Click on 'accept all' to give permission to place all types of cookies or click
on ‘settings’ to make your own choice. If you choose to refuse, we will only
place necessary cookies. Read more about our cookie statement Cookie settings.

Essential

Essential or functional cookies are necessary for a website to function properly
and provide basic features such as page navigation, user authentication, and
language preferences.



NameProviderPurposeExpiryTypetest_cookieGoogleUsed to check if the user's
browser supports cookies.1 dayHTTPsc_anonymous_idMatterportUsed in context with
the 3D-view-function on the website.PersistentHTMLCookieConsentCookiebotStores
the user's cookie consent state for the current domain1
yearHTTPform_keywww.petiteamelie.co.ukEnsures visitor browsing-security by
preventing cross-site request forgery. This cookie is essential for the security
of the website and visitor. 1 dayHTTPmage-cache-sessidwww.petiteamelie.co.ukThis
cookie is used in context with load balancing - This optimizes the response rate
between the visitor and the site, by distributing the traffic load on multiple
network links or servers. 1 dayHTTPmage-cache-storagewww.petiteamelie.co.ukUsed
to optimize the loading speed on the website. This is done by pre-loading some
procedures in the visitors'
browser.PersistentHTMLmage-cache-timeoutwww.petiteamelie.co.ukThis cookie is
necessary for the cache function. A cache is used by the website to optimize the
response time between the visitor and the website. The cache is usually stored
on the visitor’s
browser.PersistentHTMLmage-messageswww.petiteamelie.co.ukNecessary for the
functionality of the website's chat-box function.
SessionHTTPPHPSESSIDwww.petiteamelie.co.ukPreserves user session state across
page requests.1 dayHTTPprivate_content_versionwww.petiteamelie.co.ukThis cookie
is necessary for the cache function. A cache is used by the website to optimize
the response time between the visitor and the website. The cache is usually
stored on the visitor’s browser.400
daysHTTPprivate_content_versionwww.petiteamelie.co.ukThis cookie is necessary
for the cache function. A cache is used by the website to optimize the response
time between the visitor and the website. The cache is usually stored on the
visitor’s browser.PersistentHTMLX-Magento-Varywww.petiteamelie.co.ukThis cookie
is necessary for the cache function. A cache is used by the website to optimize
the response time between the visitor and the website. The cache is usually
stored on the visitor’s browser.1 dayHTTPVISITOR_PRIVACY_METADATAYouTubeStores
the user's cookie consent state for the current domain180 daysHTTP

Preferences Preference cookies enable a website to remember information that
changes the way the website behaves or looks, like your preferred language or
the region that you are in.



NameProviderPurposeExpiryTypesection_data_idswww.petiteamelie.co.ukUsed in
context with the shopping cart functionality. Remembers any wish-list products
and visitor credentials when checking out. 1
dayHTTPSTUIDwww.petiteamelie.co.ukTracks the user’s interaction with the
website’s search-bar-function. This data can be used to present the user with
relevant products or services. 1 dayHTTPSTVIDwww.petiteamelie.co.ukTracks the
user’s interaction with the website’s search-bar-function. This data can be used
to present the user with relevant products or services. 1 yearHTTP

Analytical

Analytical cookies are used to collect data on website usage and user behavior
in order to analyze and improve the performance and functionality of a website.



NameProviderPurposeExpiryTypec.gifMicrosoftCollects data on the user’s
navigation and behavior on the website. This is used to compile statistical
reports and heatmaps for the website
owner.SessionPixel_clck [x2]MicrosoftCollects data on the user’s navigation and
behavior on the website. This is used to compile statistical reports and
heatmaps for the website owner.1 yearHTTP_clsk [x2]MicrosoftRegisters
statistical data on users' behaviour on the website. Used for internal analytics
by the website operator. 1 dayHTTP__qcaQuantcastCollects data on the user's
visits to the website, such as the number of visits, average time spent on the
website and what pages have been loaded with the purpose of generating reports
for optimising the website content.1 yearHTTP_dlt [x2]QuantcastSets a unique ID
for the session. This allows the website to obtain data on visitor behaviour for
statistical purposes.1 dayHTTPNRBA_SESSIONNew RelicCollects data on the user’s
navigation and behavior on the website. This is used to compile statistical
reports and heatmaps for the website
owner.PersistentHTMLFPAUpetiteamelie.co.ukAssigns a specific ID to the visitor.
This allows the website to determine the number of specific user-visits for
analysis and statistics.3 monthsHTTPFPIDpetiteamelie.co.ukRegisters statistical
data on users' behaviour on the website. Used for internal analytics by the
website operator. 400 daysHTTPFPLCpetiteamelie.co.ukRegisters a unique ID that
is used to generate statistical data on how the visitor uses the website.1
dayHTTP__qcaIssuuCollects data on the user's visits to the website, such as the
number of visits, average time spent on the website and what pages have been
loaded with the purpose of generating reports for optimising the website
content.PersistentHTMLqcSesIssuuCollects data on the user's visits to the
website, such as the number of visits, average time spent on the website and
what pages have been loaded with the purpose of generating reports for
optimising the website content.SessionHTML_cltkMicrosoftRegisters statistical
data on users' behaviour on the website. Used for internal analytics by the
website operator. SessionHTMLCLIDMicrosoftCollects data on the user’s navigation
and behavior on the website. This is used to compile statistical reports and
heatmaps for the website owner.1 yearHTTPtdGoogleRegisters statistical data on
users' behaviour on the website. Used for internal analytics by the website
operator. SessionPixellast_visited_storewww.petiteamelie.co.ukDetermines when
the visitor last visited the different subpages on the website, as well as sets
a timestamp for when the session started.1 dayHTTP

Marketing

Marketing cookies are used to track user activity across websites in order to
display targeted advertising based on the user's interests and browsing
behavior.



NameProviderPurposeExpiryType_uetsidMicrosoftUsed to track visitors on multiple
websites, in order to present relevant advertisement based on the visitor's
preferences. PersistentHTML_uetsid_expMicrosoftContains the expiry-date for the
cookie with corresponding name. PersistentHTML_uetvidMicrosoftUsed to track
visitors on multiple websites, in order to present relevant advertisement based
on the visitor's preferences. PersistentHTML_uetvid_expMicrosoftContains the
expiry-date for the cookie with corresponding name.
PersistentHTMLMR [x2]MicrosoftUsed to track visitors on multiple websites, in
order to present relevant advertisement based on the visitor's preferences. 7
daysHTTPMSPTCMicrosoftThis cookie registers data on the visitor. The information
is used to optimize advertisement relevance. 1 yearHTTPMUID [x2]MicrosoftUsed
widely by Microsoft as a unique user ID. The cookie enables user tracking by
synchronising the ID across many Microsoft domains.1
yearHTTPSRM_BMicrosoftTracks the user’s interaction with the website’s
search-bar-function. This data can be used to present the user with relevant
products or services. 1 yearHTTPANONCHKMicrosoftRegisters data on visitors from
multiple visits and on multiple websites. This information is used to measure
the efficiency of advertisement on websites. 1 dayHTTPSMMicrosoftRegisters a
unique ID that identifies the user's device during return visits across websites
that use the same ad network. The ID is used to allow targeted
ads.SessionHTTP_fbp [x2] Meta Platforms, Inc.Used by Facebook to deliver a
series of advertisement products such as real time bidding from third party
advertisers.3 monthsHTTP_flowbox [x2]connect.getflowbox.comNecessary for the
implementation of Instagram picture-gallery onto the website. 2
yearsHTTP_ga [x2]co.uk
www.petiteamelie.co.ukUsed to send data to Google Analytics about the visitor's
device and behavior. Tracks the visitor across devices and marketing channels.2
yearsHTTP_ga_# [x3]co.uk
www.petiteamelie.co.uk
GoogleUsed to send data to Google Analytics about the visitor's device and
behavior. Tracks the visitor across devices and marketing channels.2
yearsHTTP_gat [x2]GoogleUsed to send data to Google Analytics about the
visitor's device and behavior. Tracks the visitor across devices and marketing
channels.1 dayHTTP_gcl_au [x2]co.uk
www.petiteamelie.co.ukUsed by Google AdSense for experimenting with
advertisement efficiency across websites using their services. 3
monthsHTTP_gid [x2]GoogleUsed to send data to Google Analytics about the
visitor's device and behavior. Tracks the visitor across devices and marketing
channels.1 dayHTTP_uetsid [x2]MicrosoftCollects data on visitor behaviour from
multiple websites, in order to present more relevant advertisement - This also
allows the website to limit the number of times that they are shown the same
advertisement. 1 dayHTTP_uetvid [x2]MicrosoftUsed to track visitors on multiple
websites, in order to present relevant advertisement based on the visitor's
preferences. SessionHTTPlastExternalReferrer Meta Platforms, Inc.Detects how the
user reached the website by registering their last
URL-address.PersistentHTMLlastExternalReferrerTime Meta Platforms, Inc.Detects
how the user reached the website by registering their last
URL-address.PersistentHTMLIDEGoogleUsed by Google DoubleClick to register and
report the website user's actions after viewing or clicking one of the
advertiser's ads with the purpose of measuring the efficacy of an ad and to
present targeted ads to the user.1 yearHTTPpagead/landingGoogleCollects data on
visitor behaviour from multiple websites, in order to present more relevant
advertisement - This also allows the website to limit the number of times that
they are shown the same advertisement.
SessionPixelads/ga-audiencesGooglePendingSessionPixelpagead/1p-user-list/#GoogleTracks
if the user has shown interest in specific products or events across multiple
websites and detects how the user navigates between sites. This is used for
measurement of advertisement efforts and facilitates payment of referral-fees
between websites.SessionPixelcollectGoogleUsed to send data to Google Analytics
about the visitor's device and behavior. Tracks the visitor across devices and
marketing channels.SessionPixeliutkIssuuRecognises the user's device and what
Issuu documents have been read.SessionHTTPmcQuantcastCollects data on the user's
visits to the website, such as what pages have been loaded. The registered data
is used for targeted ads.13
monthsHTTP#-#YouTubePendingSessionHTMLiU5q-!O9@$YouTubeRegisters a unique ID to
keep statistics of what videos from YouTube the user has
seen.SessionHTMLLAST_RESULT_ENTRY_KEYYouTubeUsed to track user’s interaction
with embedded
content.SessionHTTPLogsDatabaseV2:V#||LogsRequestsStoreYouTubePendingPersistentIDBnextIdYouTubeUsed
to track user’s interaction with embedded
content.SessionHTTPremote_sidYouTubeNecessary for the implementation and
functionality of YouTube video-content on the website.
SessionHTTPrequestsYouTubeUsed to track user’s interaction with embedded
content.SessionHTTPServiceWorkerLogsDatabase#SWHealthLogYouTubeNecessary for the
implementation and functionality of YouTube video-content on the website.
PersistentIDBTESTCOOKIESENABLEDYouTubeUsed to track user’s interaction with
embedded content.1 dayHTTPVISITOR_INFO1_LIVEYouTubePending180
daysHTTPYSCYouTubePendingSessionHTTPyt.innertube::nextIdYouTubeRegisters a
unique ID to keep statistics of what videos from YouTube the user has
seen.PersistentHTMLYtIdbMeta#databasesYouTubeUsed to track user’s interaction
with embedded content.PersistentIDByt-remote-cast-availableYouTubeStores the
user's video player preferences using embedded YouTube
videoSessionHTMLyt-remote-cast-installedYouTubeStores the user's video player
preferences using embedded YouTube
videoSessionHTMLyt-remote-connected-devicesYouTubeStores the user's video player
preferences using embedded YouTube
videoPersistentHTMLyt-remote-device-idYouTubeStores the user's video player
preferences using embedded YouTube
videoPersistentHTMLyt-remote-fast-check-periodYouTubeStores the user's video
player preferences using embedded YouTube
videoSessionHTMLyt-remote-session-appYouTubeStores the user's video player
preferences using embedded YouTube
videoSessionHTMLyt-remote-session-nameYouTubeStores the user's video player
preferences using embedded YouTube videoSessionHTML

Unclassified Unclassified cookies are cookies that we are in the process of
classifying, together with the providers of individual cookies.



NameProviderPurposeExpiryTypemagepal-eegtm-jsdatalayer-tswww.petiteamelie.co.ukPendingPersistentHTML

Ga terugAllow selection

Customer reviews 9,2/10
Unique & stylish products
Delivered within 1-3 working days
Free shipping on orders above £50*
Excellent customer service & advice
Customer reviews 9,2/10

need advice?

Search


0

0


CHECKOUT USING YOUR ACCOUNT

Email Address

Password

Sign In Forgot Your Password?



CHECKOUT AS A NEW CUSTOMER

Creating an account has many benefits:

 * See order and shipping status
 * Track order history
 * Check out faster

Create an Account
10% DISCOUNT ON ALL PLAY TENTS|SHOP NOW

 * Menu
   
   NEW IN
    *  * NEW IN
          * New Furniture
          * New Textile
          * New Toys
      
       * COMING SOON
   
    *  * 

 * Menu
   
   NURSERY
    *  * FURNITURE
          * Nursery furniture sets
          * Convertible cot bed
          * Cot beds
          * Bedside cribs
          * Baby mattresses
          * Chest of drawers & Changing Table Toppers
          * Changing tables
          * Baby wardrobes
          * Playpens
          * Rocking Chairs & Armchairs
          * Baby High Chair
      
       * BABY SHOWER GIFTS
   
    *  * TEXTILES & RUGS
          * Baby blankets
          * Changing mats & covers
          * Cot bedding
          * Washable rugs
      
       * DECORATION & STORAGE
          * Baby Toys
          * Baby wall decor
          * Storage
          * Lamps
   
    *  * 

 * Menu
   
   TODDLER ROOM
    *  * FURNITURE
          * Toddler beds
          * Junior beds
          * House bed
          * Underbed Drawers
          * Toddler mattresses
          * Bedside tables
          * Kids wardrobes
          * All toddler furniture
          * Children's table & chair
   
    *  * Textiles & Carpets
          * Toddler bedding
          * Toddler duvet sets
          * Mattress protectors
          * Kids blankets
          * Kids rugs
      
       * Decoration & Storage
          * Storage baskets
          * Kids wall decor
          * Kids lamps
   
    *  * 

 * Menu
   
   KIDS ROOM
    *  * FURNITURE
          * Complete sets
          * Children's beds
          * High sleepers
          * Bunk beds
          * Kids bedside tables
          * Children's wardrobes
          * Children's bookshelves
          * Kids desks
   
    *  * Textiles & Carpets
          * Children's bedding
          * Children's rugs
      
       * Decoration & Storage
          * Wall decor
          * Children's lamps
   
    *  * 

 * Menu
   
   TOYS
    *  * View all
       * WOODEN TOYS
          * All wooden toys
      
       * PLAY KITCHEN & ACCESSORIES
          * Wooden play kitchens
          * Toy kitchen accessories
          * Food toys
      
       * DOLL HOUSES & ACCESSORIES
          * Dollhouses
          * Doll house furniture
          * Dollhouse dolls
   
    *  * ROLE PLAY
          * Teepee & play tents
          * Kids workbench & tools
          * Toy dressers & Beauty
          * Dolls pram
          * Dolls accessories
      
       * MOTORIC TOYS
          * All motoric toys
   
    *  * TOYS FOR BABIES & TODDLERS
          * Baby walkers & bicycles
          * Shape sorters
          * Pull-along toys
      
       * SOFT TOYS
          * SOFT TOYS
   
    *  * 

 * Menu
   
   INSPIRATION
    *  * BESTSELLERS
       * COMMUNITY
       * MAMAZONE
       * MOODBOARD
       * LOOKBOOK
       * OUR CONCEPT STORES
       * VIRTUAL 3D STORE WALK
   
    *  * 

 * Menu PROMO
   
 * Menu CUSTOMER SERVICE
   




LOGIN

Email
Password

Forgot password? Sign In

Or use




REGISTER

Create a Petite Amélie account

Create an Account


CREATE A PETITE AMÉLIE ACCOUNT

First Name
Last Name
Email
Password
Confirm Password
I agree to receive newsletters with marketing material from Petite Amélie. I
understand that I can unsubscribe from the newsletter at any time by using the
unsubscribe link in the email or by contacting Petite Amélie directly.
I have read and understood the information on the processing of my personal
data. See the Privacy statement
Create an Account

This form is protected by reCAPTCHA - the Google Privacy Policy and Terms of
Service apply.


FORGOT YOUR PASSWORD?

Please enter your email address below. You will receive a link to reset your
password.
Email
Reset My Password

This form is protected by reCAPTCHA - the Google Privacy Policy and Terms of
Service apply.


TIMELESS WOODEN TOYS
Explore & Shop
Discover Now
BABY ROOM «SOIE»
Create your perfect nursery
DISCOVER NOW
ENJOY 10% OFF ALL PLAY TENTS
Create a dreamy nook
SHOP NOW
TODDLER BED «PLUME» IN WALNUT
Cocooned comfort for your little one
SHOP NOW
TIMELESS WOODEN TOYS
Explore & Shop
Discover Now
BABY ROOM «SOIE»
Create your perfect nursery
DISCOVER NOW
ENJOY 10% OFF ALL PLAY TENTS
Create a dreamy nook
SHOP NOW
TODDLER BED «PLUME» IN WALNUT
Cocooned comfort for your little one
SHOP NOW



Nursery

Toddler Room

Childrens Room

Toys


NEW

The newest items for you and your little one

Discover them here!


NEW

COT BED «ROSEAU» | 70 X 140 CM | OATMEAL

449,95
NEW

Wooden Dollhouse «Campagne» | incl. 14 Pieces Furniture Set | 81 cm | White &
pastel blue

99,95
NEW

BABY DRESSER «ROSEAU» | OATMEAL

499,95
NEW

Unicorn rocking horse «LARA»

79,95
NEW

BABY COT BED «ROSEAU» | 70 X 140 CM | WALNUT

449,95
NEW

BABY DRESSER «ROSEAU» | WALNUT

499,95
NEW

CHANGING TABLE TOPPER FOR DRESSER «ROSEAU» | WALNUT

59,95
NEW

CHILDREN'S WARDROBE «ROSEAU» | WALNUT

549,95
See All



MADE BY A MUM

Lyon 2010, a mum-to-be can’t find the cot of her dreams for her daughter. Taking
matters into her own hands, she designs it herself and has it made, and so
Petite Amélie was born!

Today, at Petite Amélie, we envision children's bedrooms with the utmost
attention to detail, timeless design, clean lines that grow with your child and
neutral colours, giving you free rein to imagine, design, and create a unique
space of your own.

A room designed by your imagination, just like the start of our story.

about us




GET INSPIRED!

#petiteamelie #mypetiteamelie @petiteamelie


See more


ROOM INSPIRATION
- SHOP THE LOOK!

Planning a toddler room can be a little daunting at first. But it doesn't have
to be that way. We've prepared some ideas that you might like.

get inspired

 


MOODBOARD MAKER

Create your own aesthetic mood board in minutes using our free mood board
creator!

create now


NEWSLETTER

Subscribe to our newsletter now and stand a chance to win a voucher for £150

sign me up




FOLLOW US



+44 204 579 9285

hello@petiteamelie.co.uk

Customer Reviews: 9,2 / 10

Petite Amélie UK Ltd6 Sopwith Way, Daventry, NN11 8PBUnited KingdomVAT nr.
411313164 

petite amélie

 * Our story
 * Work at Petite Amélie
 * Blog
 * Press
 * Dolls house
 * Nursery

customer service

 * FAQ
 * Contact us
 * Delivery
 * Returns
 * My account

information

 * Terms & conditions
 * Privacy policy
 * Warranty
 * UGC #yespetiteamelie

© 2024 Petite Amélie - All prices include 21% VAT and do not include variable
shipping costs.

Close


NEWSLETTER

Join our community and be the first to know about all new products & promotions


INFORMATION CHILD (OPTIONAL)

Enter name and date of birth of your children and receive personalised offers by
e-mail.


MY DATA

Email
First Name


Date of Birth (optional)
Name Of Child (optional)


CHILD #1

Date of Birth (optional)
Name Of Child (optional)
I agree to receive newsletters with marketing material from Petite Amélie and
that Petite Amélie may process my personal data for this purpose and as further
described in the Privacy Policy. I understand that I can unsubscribe from the
newsletter at any time by using the unsubscribe link in the email or by
contacting Petite Amélie directly.
Add Extra Child sign me up

This form is protected by reCAPTCHA - the Google Privacy Policy and Terms of
Service apply.



Products added to Cart

Color:


In stock Out of stock

0,00 0,00
Total: 0,00 0 product in the cart products in the cart
Order Edit Shopping Cart