tracx.me
Open in
urlscan Pro
188.114.97.9
Public Scan
URL:
https://tracx.me/xgurj0/
Submission: On June 11 via api from LU — Scanned from NL
Submission: On June 11 via api from LU — Scanned from NL
Form analysis
2 forms found in the DOM<form id="input_container" @submit.prevent="$store.form.submit()" x-show="!$store.interface.tracx_typing && $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 w-full max-w-xs" style="display: none;">
<span x-show="$store.form.currentElement()?.input_title" x-text="$store.form.currentElement()?.input_title" class="text-sm w-full text-right" :class="!$store.form.currentElement()?.payload?.searchable ? 'text-right' : 'text-left'"
style="display: none;"></span>
<template x-if="$store.form.currentElement()?.payload?.searchable !== true">
<div class="flex flex-wrap gap-2 ml-auto">
<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 && !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-silver-800 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>
</template>
<div class="flex flex-wrap gap-2 ml-auto">
<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 && !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-silver-800 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>
<template x-if="$store.form.currentElement()?.payload?.searchable">
<div x-data="searchable_dropdown($store.form.currentElement()?.element_options, 'label')" class="flex flex-col w-full">
<div class="flex items-center w-full mb-1">
<form class="relative flex flex-1" action="#" method="GET">
<label for="search-field" class="sr-only">Search</label>
<svg class="pointer-events-none absolute inset-y-0 left-0 h-full w-5 text-gray-400" viewBox="0 0 20 20" fill="currentColor" aria-hidden="true">
<path fill-rule="evenodd" d="M9 3.5a5.5 5.5 0 100 11 5.5 5.5 0 000-11zM2 9a7 7 0 1112.452 4.391l3.328 3.329a.75.75 0 11-1.06 1.06l-3.329-3.328A7 7 0 012 9z" clip-rule="evenodd"></path>
</svg>
<input id="search-field" x-model="search_input" class="bg-transparent block h-full w-full border-0 py-2 pl-8 pr-0 text-gray-900 placeholder:text-gray-400 focus:ring-0 sm:text-sm" placeholder="Search..." type="search" name="search">
</form>
</div>
<div class="flex flex-col items-end mb-2 gap-px w-full max-h-72 overflow-y-scroll rounded-xl">
<template x-for="(option, index) in filteredOptions(true)">
<label :for="'option_'+option.id" class="cursor-pointer flex justify-end w-full">
<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-silver-800 response_option p-0 px-3 py-2 text-sm rounded-xl border bg-white flex w-full text-left">
</span>
<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>
</template>
</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="$store.form.response" @keydown.super.enter="$store.form.submit()" style="resize: none;" class="text-silver-800 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-silver-800 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 sent-radius hover:shadow-outline-gray border-2 border-dashed border-gray-200 p-4">
<div>
<input type="file" id="contact_file_input" :accept="$store.form.currentElement()?.payload?.accept ?? '*/*'" 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')" accept="*/*">
<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-red hover:bg-red-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>
GET #
<form class="relative flex flex-1" action="#" method="GET">
<label for="search-field" class="sr-only">Search</label>
<svg class="pointer-events-none absolute inset-y-0 left-0 h-full w-5 text-gray-400" viewBox="0 0 20 20" fill="currentColor" aria-hidden="true">
<path fill-rule="evenodd" d="M9 3.5a5.5 5.5 0 100 11 5.5 5.5 0 000-11zM2 9a7 7 0 1112.452 4.391l3.328 3.329a.75.75 0 11-1.06 1.06l-3.329-3.328A7 7 0 012 9z" clip-rule="evenodd"></path>
</svg>
<input id="search-field" x-model="search_input" class="bg-transparent block h-full w-full border-0 py-2 pl-8 pr-0 text-gray-900 placeholder:text-gray-400 focus:ring-0 sm:text-sm" placeholder="Search..." type="search" name="search">
</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 404 ERROR UH-OH! WE CAN'T SEEM TO FIND THE PAGE YOU'RE LOOKING FOR. It might have moved or doesn't exist anymore. Don't worry, you can head back to our homepage or use the search bar to find what you need. Thanks for your patience! Believe this message to be an error? Contact us at info@chaseinteraction.com THIS SESSION HAS EXPIRED THIS FORM HAS ALREADY BEEN COMPLETED AND IS NO LONGER ACCESSIBLE. We're sorry for the inconvenience, but your session has expired and we're unable to retrieve your responses. Please feel free to start a fresh form if needed. Thanks for your understanding! Believe this message to be an error? Contact us at info@chaseinteraction.com 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 THIS PAGE IS NOT CURRENTLY ACTIVE PLEASE CONTACT THE ACCOUNT OWNER THIS PAGE IS NOT CURRENTLY ACTIVE PLEASE CONTACT THE ACCOUNT OWNER Anonymous form Skipped Uploading Search Drag a file here or click in this area Open chat 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 (1 hour) DESCRIPTION This token allows you to interact with your current form session. Without it this website would not work. Close TRACX PRIVACY POLICY FOR IDENTIFIABLE DATA COLLECTION 1. INTRODUCTION This Privacy Policy outlines the practices and protocols related to the collection, use, and sharing of identifiable data, including but not limited to email addresses, phone numbers, and physical addresses, by businesses or individuals using the TRACX tool. 2. DATA COLLECTION When you provide identifiable data through a form powered by TRACX, you are directly providing this information to the client (the business or individual) using TRACX. 3. DATA USE The client using TRACX intends to use your identifiable data for the purpose specified in the form or as otherwise explicitly communicated to you. TRACX facilitates the storage and management of this data but does not use it for its own unrelated purposes. 4. DATA SHARING By submitting your identifiable data, you consent to its provision to the client using TRACX. TRACX does not share your data with unrelated third parties but may process it as required to provide its services to the client. 5. DATA PROTECTION TRACX is committed to ensuring that the identifiable data you provide is secure. We have implemented technical and organizational measures to safeguard your data from unauthorized access, use, or disclosure. 6. DATA STORAGE All identifiable data you provide through forms powered by TRACX is stored on the TRACX platform. TRACX employs advanced security measures and protocols to ensure the integrity and safety of the stored data. The client remains the primary data controller, but TRACX is responsible for the secure storage and management of the data. TRACX retains the identifiable data for a duration specified by the client or until a deletion request is made, subject to any legal retention requirements. 7. YOUR RIGHTS In accordance with GDPR and UK data protection laws, you have the right to access, rectify, and erase your identifiable data, among other rights. To exercise these rights, you should contact TRACX directly. Additionally, you can complete a Data Subject Access Request Form available through TRACX. 8. CHANGES TO THIS POLICY This Privacy Policy may be updated from time to time. We recommend reviewing it periodically to stay informed about our data protection practices. 9. CONTACT For any questions or concerns related to this Privacy Policy or your identifiable data, you may contact TRACX directly. We are committed to addressing any inquiries or concerns you may have. Close