tracx.me Open in urlscan Pro
2a06:98c1:3121::3  Public Scan

URL: https://tracx.me/xgurj0/
Submission: On November 21 via api from LU — Scanned from NL

Form analysis 1 forms found in the DOM

<form id="input_container" @submit.prevent="$store.form.submit()" x-show="!$store.interface.tracx_typing &amp;&amp; $store.form.currentElement()?.performs == 'get_response'" style="display: none;">
  <div class="flex flex-col ml-auto items-end animate-fade-in-up">
    <div x-show="['radio','checkbox'].includes($store.form.currentElement()?.input_type)" class="flex flex-col gap-2" style="display: none;">
      <span x-show="$store.form.currentElement()?.input_title" x-text="$store.form.currentElement()?.input_title" class="text-sm text-center w-full" style="display: none;"></span>
      <div class="flex flex-wrap gap-2">
        <template x-for="(option, index) in $store.form.currentElement()?.element_options">
          <label :for="'option_'+option.id" class="cursor-pointer flex justify-end" :class="{ 'w-full' : ($store.form.currentElement()?.element_options.length > 4 &amp;&amp; !option?.icon_img)}">
            <span x-show="!option.icon_img" name="choice_id" :value="option.id" x-text="option.label" :class="[$store.form.selected.includes(option.id) ? '!bg-green-500 border-green-500 !text-white' : 'hover:bg-gray-50 border-gray-300 ']"
              class="text-navy response_option p-0 px-3 py-2 rounded-3xl border bg-white flex">
            </span>
            <template x-if="option.icon_img">
              <img x-show="option.icon_img" :src="'/assets/icons/svg/'+(option.icon_img ?? 'unknown')+'.svg'" style="width: 42px;" class="transform hover:scale-110 transition duration-100 ease-in-out">
            </template>
            <input x-model.number="$store.form.selected" x-on:change="$store.form.toggleResponseOption(index)" type="checkbox" name="options[]" class="hidden" :value="option.id" :id="'option_'+option.id">
          </label>
        </template>
      </div>
    </div>
    <div x-show="['email','number','text','textarea'].includes($store.form.currentElement()?.input_type)" class="w-full max-w-sm" style="display: none;">
      <span x-show="$store.form.currentElement()?.input_title" x-text="$store.form.currentElement()?.input_title" class="text-sm text-center w-full" style="display: none;"></span>
      <div x-show="$store.form.currentElement()?.input_type == 'textarea'" class="flex w-full items-end justify-end gap-2 flex-shrink-0" style="display: none;">
        <textarea id="response_input_textarea" x-model.lazy="$store.form.response" style="resize: none;" class="text-navy rounded-2xl border border-slate-200 shadow h-32 p-4 w-full rounded-br-md"
          :placeholder="$store.form.currentElement()?.placeholder ?? 'Type your response here'" placeholder="Type your response here"></textarea>
      </div>
      <div x-show="['email','number','text'].includes($store.form.currentElement()?.input_type)" class="flex w-full items-end justify-end gap-2" style="display: none;">
        <input id="response_input_short" :type="$store.form.currentElement()?.input_type" x-model.lazy="$store.form.response" :placeholder="$store.form.currentElement()?.placeholder ?? 'Type your response here'"
          class="text-navy rounded-2xl border border-slate-200 shadow p-4 w-full" type="" placeholder="Type your response here">
      </div>
    </div>
    <div x-show="['file'].includes($store.form.currentElement()?.input_type)" class="w-full" style="display: none;">
      <div x-show="!$store.form.file_upload.file" id="FileUpload" class="grid h-30 place-items-center mb-2 w-full relative bg-white rounded-md hover:shadow-outline-gray border-2 border-dashed border-gray-200 p-4">
        <div>
          <input type="file" id="contact_file_input" class="absolute inset-0 m-0 p-0 w-full h-full z-10 cursor-pointer outline-none opacity-0" x-ref="customer_upload_input" @change="$store.form.setFile($event)"
            x-on:dragover="$el.classList.add('active')" x-on:dragleave="$el.classList.remove('active')" x-on:drop="$el.classList.remove('active')">
          <div class="flex flex-col space-y-2 items-center justify-center">
            <svg xmlns="http://www.w3.org/2000/svg" class="h-8 w-8 text-navy" fill="none" viewBox="0 0 24 24" stroke="currentColor">
              <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M7 16a4 4 0 01-.88-7.903A5 5 0 1115.9 6L16 6a5 5 0 011 9.9M15 13l-3-3m0 0l-3 3m3-3v12"></path>
            </svg>
            <p class="text-gray-700 font-medium">Drag a file here or click in this area </p>
          </div>
        </div>
      </div>
      <div x-show="$store.form.file_upload.file" class="message !whitespace-normal sent bg-slate-50 relative flex-col max-w-[350px]" id="file_preview" style="display: none;">
        <a class="grid place-items-center w-8 h-8 rounded-full absolute -top-2 -right-2 bg-danger hover:bg-danger-700" @click.prevent="$store.form.clearFile()">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor" class="w-5 h-5 text-white">
<path d="M6.28 5.22a.75.75 0 00-1.06 1.06L8.94 10l-3.72 3.72a.75.75 0 101.06 1.06L10 11.06l3.72 3.72a.75.75 0 101.06-1.06L11.06 10l3.72-3.72a.75.75 0 00-1.06-1.06L10 8.94 6.28 5.22z"></path>
</svg>
</a>
        <template x-if="$store.form.file_upload.file?.type.startsWith('image/')">
          <img class="rounded-md mb-2" x-bind:src="URL.createObjectURL($store.form.file_upload.file)" alt="File Preview">
        </template>
        <div class="flex items-center gap-2 rounded-md">
          <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor" class="w-5 h-5 flex-shrink-0">
            <path fill-rule="evenodd"
              d="M15.621 4.379a3 3 0 00-4.242 0l-7 7a3 3 0 004.241 4.243h.001l.497-.5a.75.75 0 011.064 1.057l-.498.501-.002.002a4.5 4.5 0 01-6.364-6.364l7-7a4.5 4.5 0 016.368 6.36l-3.455 3.553A2.625 2.625 0 119.52 9.52l3.45-3.451a.75.75 0 111.061 1.06l-3.45 3.451a1.125 1.125 0 001.587 1.595l3.454-3.553a3 3 0 000-4.242z"
              clip-rule="evenodd"></path>
          </svg>
          <div>
            <p class="text-slate-700 text-sm font-bold" x-text="$store.form.file_upload.file?.name"></p>
            <div class="flex flex-wrap gap-1">
              <span class="bg-slate-200 px-2 py-1 text-xs rounded" x-text="$store.form.file_upload.file?.type"></span>
              <span class="bg-slate-200 px-2 py-1 text-xs rounded" x-text="$store.interface.formatFileSize($store.form.file_upload.file?.size)"></span>
            </div>
          </div>
        </div>
      </div>
    </div>
    <div x-show="['checkbox','text','number','email','textarea', 'file'].includes($store.form.currentElement()?.input_type)" class="flex flex-wrap gap-3 justify-end w-full mt-2" style="display: none;">
      <button type="submit" :disabled="$store.interface.tracx_typing" aria-button="Submit choices" :class="{'cursor-not-allowed' : $store.interface.tracx_typing}"
        class="bg-green-400 hover:bg-green-600 h-11 items-center inline-flex flex-shrink-0 justify-center rounded-full text-white w-11 cursor-not-allowed" disabled="disabled">
        <svg x-show="$store.interface.tracx_typing" class="animate-spin h-5 w-5 text-white" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24">
          <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>
        <svg x-show="!$store.interface.tracx_typing" xmlns="http://www.w3.org/2000/svg" class="h-5 w-5" fill="currentColor" style="display: none;">
          <path d="M10.894 2.553a1 1 0 00-1.788 0l-7 14a1 1 0 001.169 1.409l5-1.429A1 1 0 009 15.571V11a1 1 0 112 0v4.571a1 1 0 00.725.962l5 1.428a1 1 0 001.17-1.408l-7-14z"></path>
        </svg>
      </button>
    </div>
  </div>
</form>

Text Content

POWERED BY


YOU ARE ABOUT TO BE REDIRECTED

This link was created using the free version of TRACX.

Clicking proceed will redirect you to the link below

""

Proceed


WARNING


YOU ARE VISITING A SUSPENDED LINK

It is possible that this link may lead to a site that contains harmful software
or that is attempting to scam or steal personal information.

We recommend that you do not continue to this link. If you still wish to
proceed, please do so at your own risk.

Do you still want to visit this link?

""

Proceed anyway

Believe this message to be an error? Contact us at info@chaseinteraction.com


Anonymous form
Skipped



Uploading


Drag a file here or click in this area



Open chat


COOKIES

We use cookies to improve your experience when using TRACX. Learn about our
cookies

Decline all Customise Accept all


ABOUT OUR COOKIES

We use cookies to help you navigate efficiently and perform certain functions.
You will find detailed information about all cookies below.

The cookies that are categorized as "Necessary" are stored on your browser as
they are essential for enabling the basic functionalities of the site. Cookies
in any other category won't be placed until consent is provided.

COOKIE

form_[#]_session_token

CATEGORY

Necessary

DURATION

session (8 hours)

DESCRIPTION

This token allows you to interact with your current form session. Without it
this website would not work.

COOKIE

trcx

trcx cookie setting

CATEGORY

Analytics

DURATION

12 months

DESCRIPTION

TRACX uses this cookie to temporarily retain the information that users enter to
link sessions between different TRACX products (Page, Link, QR codes etc).
Ensures data from subsequent visits to the same site are attributed to the same
user ID.

Save preferences