discprojects.co.uk
Open in
urlscan Pro
23.227.38.32
Public Scan
URL:
https://discprojects.co.uk/
Submission Tags: phishingrod
Submission: On March 13 via api from DE — Scanned from CA
Submission Tags: phishingrod
Submission: On March 13 via api from DE — Scanned from CA
Form analysis
9 forms found in the DOMPOST /localization
<form action="/localization" method="POST"><input name="_method" type="hidden" value="PUT"><input name="source" type="hidden" value="geolocation_recommendation"><input name="return_to" type="hidden" value="/"><input name="country_code" type="hidden"
value="CA"><button class="recommendation-modal__close-button" type="submit"><svg aria-label="Dismiss" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg" style="height: 1em; width: 1em;">
<path d="M11.414 10l6.293-6.293a.999.999 0 1 0-1.414-1.414L10 8.586 3.707 2.293a.999.999 0 1 0-1.414 1.414L8.586 10l-6.293 6.293a.999.999 0 1 0 1.414 1.414L10 11.414l6.293 6.293a.997.997 0 0 0 1.414 0 .999.999 0 0 0 0-1.414L11.414 10z"
fill="rgba(0, 0, 0, 1)"></path>
</svg></button></form>
POST /localization
<form action="/localization" method="POST" class="recommendation-modal__form"><input name="_method" type="hidden" value="PUT"><input name="source" type="hidden" value="geolocation_recommendation"><input name="return_to" type="hidden" value="/"><input
name="country_code" type="hidden" value="CA"><button class="recommendation-modal__button" type="submit" style="background-color: rgb(0, 47, 167); color: rgb(255, 255, 255);">Continue</button></form>
GET /search
<form class="my-6 section-x-padding" action="/search" method="get" role="search">
<div class="flex w-full max-w-xs items-end">
<label for="sidebar-search" class="visually-hidden">Search</label>
<input class="min-w-0 flex-auto bg-transparent border-current border-b-text placeholder-current py-1.5" id="sidebar-search" type="text" name="q" placeholder="Search">
<button class="px-1" type="submit">
<span class="inline-block w-5 h-5"><svg aria-hidden="true" focusable="false" role="presentation" class="icon fill-current icon-search" viewBox="0 0 24 24">
<path fill-rule="evenodd"
d="M10.533 17.438a6.968 6.968 0 01-6.96-6.96 6.968 6.968 0 016.96-6.96 6.968 6.968 0 016.96 6.96 6.968 6.968 0 01-6.96 6.96zm6.949-1.314a8.917 8.917 0 002.01-5.646c0-4.941-4.02-8.96-8.96-8.96-4.94 0-8.96 4.019-8.96 8.96 0 4.94 4.02 8.96 8.96 8.96 2.082 0 3.996-.72 5.52-1.916l4.962 4.96 1.415-1.413-4.947-4.945z">
</path>
</svg></span>
<span class="visually-hidden">Submit</span>
</button>
</div>
</form>
POST /cart
<form action="/cart" method="post" class="relative overflow-y-auto flex-auto" novalidate="">
<div class="grid grid-cols-1 gap-gutter bg-border">
<template x-for="(item, index) in state.items" :key="item.key">
<div class="flex py-4 section-x-padding transition bg-primary-background" :class="{ 'opacity-50 cursor-wait': item.updating }" :data-cart-item-index="(index + 1)" :data-cart-item-key="item.key" data-cart-row="">
<template x-if="!(item.featured_image.url === null)">
<div class="flex-shrink-0 w-10 md:w-20 mr-4">
<a :href="item.url" class="block" aria-hidden="true" tabindex="-1">
<img class="w-full text-transparent" :src="getSizedImageUrl(item.featured_image.url, '110x')" :srcset="getCartImgSrcset(item.featured_image.url)" :width="item.featured_image.width" :height="item.featured_image.height" :alt="item.product_title" sizes="(min-width: 48em) 5rem, 3.5rem">
<pre x-text="item.featured_image.src"></pre>
</a>
</div>
</template>
<div class="flex-auto">
<a class="f--heading font-size--m md--up--font-size--l color--active-text" :href="item.url" x-text="item.product_title"></a>
<template x-if="item.variant_title">
<p class="text-sm" x-text="item.variant_title"></p>
</template>
<template x-if="item.selling_plan_allocation">
<p class="text-sm" x-text="item.selling_plan_allocation.selling_plan.name"></p>
</template>
<template x-for="property in flatProperties(item.properties)" :key="property.name">
<p class="text-sm">
<span x-text="property.name"></span>: <span x-text="property.value"></span>
</p>
</template>
<template x-if="item.line_level_discount_allocations.length">
<ul class="lg:hidden mt-1 text-sm text-primary-accent" aria-label="Discount">
<template x-for="allocation in item.line_level_discount_allocations">
<li class="">
<span x-text="allocation.discount_application.title"></span>
<span class="whitespace-nowrap">−<span x-html="formatMoney(allocation.amount)"></span></span>
</li>
</template>
</ul>
</template>
<div class="flex mt-1 lg:mt-2 items-center">
<button class="w-6 p-1" data-qty-adjust="minus" @click.prevent="qtyAdjust($event, item)" :aria-label="'Remove one ' + item.title">
<svg aria-hidden="true" focusable="false" role="presentation" class="icon fill-current icon-minus" viewBox="0 0 24 24">
<path fill-rule="evenodd" d="M20 11v2H4v-2z"></path>
</svg>
</button>
<input type="text" name="updates[]" class="min-w-0 w-6 py-1 text-center text-sm border-b-text border-current bg-transparent" min="1" aria-label="Quantity" data-qty-input="" pattern="[0-9]*" data-qty-adjust="set"
@keyup.debounce.1000ms="keyupOnInput($event)" @change="qtyAdjust($event, item)" x-model.number="item.quantity" autocomplete="off">
<button class="w-6 p-1" data-qty-adjust="plus" @click.prevent="qtyAdjust($event, item)" :aria-label="'Add one ' + item.title">
<svg aria-hidden="true" focusable="false" role="presentation" class="icon fill-current icon-plus" viewBox="0 0 24 24">
<path fill-rule="evenodd" d="M20 11v2h-7v7h-2v-7H4v-2h7V4h2v7z"></path>
</svg>
</button>
</div>
<button class="none lg:inline-block mt-1 lg:mt-2 text-sm" data-qty-adjust="remove" @click.prevent="qtyAdjust($event, item)">
<small>Remove </small>
<span class="visually-hidden" x-text="item.title"></span>
</button>
</div>
<div class="ml-1 text-right">
<template x-if="item.line_level_discount_allocations.length">
<div>
<span class="visually-hidden">Regular price</span>
<del class="line-through" x-html="formatMoney(item.original_price)"></del>
<span class="visually-hidden">Sale price</span>
<span class="" x-html="formatMoney(item.final_line_price)"></span>
</div>
</template>
<template x-if="!item.line_level_discount_allocations.length">
<span class="" x-html="formatMoney(item.line_price)"></span>
</template>
<template x-if="item.unit_price_measurement">
<div class="text-xs">
<span x-html="formatMoney(item.unit_price)"></span> / <span x-text="item.unit_price_measurement.reference_value"></span>
<span x-text="item.unit_price_measurement.reference_unit"></span>
</div>
</template>
<template x-if="item.line_level_discount_allocations.length">
<ul class="hidden lg:block mt-1 text-sm text-primary-accent" aria-label="Discount">
<template x-for="allocation in item.line_level_discount_allocations">
<li class="">
<span x-text="allocation.discount_application.title"></span>
<span class="whitespace-nowrap">−<span x-html="formatMoney(allocation.amount)"></span></span>
</li>
</template>
</ul>
</template>
</div>
</div>
</template>
</div>
<div class="bottom-0 py-4 section-x-padding bg-primary-background border-t-grid border-grid-color">
<div :class="{ 'opacity-50 cursor-wait': updating }">
<template x-if="state.cart_level_discount_applications.length" x-for="application in state.cart_level_discount_applications">
<p class="flex justify-between text-primary-accent">
<span class="visually-hidden">Discount</span>
<span x-text="application.title"></span>
<span class="ml-2" x-html="formatMoney(application.total_allocated_amount)"></span>
</p>
</template>
<p class="flex justify-between">
<span>Subtotal</span>
<span class="ml-2" x-html="formatMoney(state.total_price)"></span>
</p>
<p class="my-2 md:my-4 text-sm accent-links-primary text-right"> Tax included. <a href="/policies/shipping-policy">Shipping</a> calculated at checkout. </p>
<div class="text-right">
<div>
<input type="submit" name="checkout"
class="cursor-pointer py-2 px-4 w-full rounded-full bg-primary-accent text-primary-accent-overlay hover:bg-primary-text hover:text-primary-text-overlay border-primary-accent hover:border-primary-text border-text" :disabled="updating"
value="Check out">
</div>
<div class="w-full md:mt-2 additional-checkout-buttons rounded-full">
<div class="dynamic-checkout__content" id="dynamic-checkout-cart" data-shopify="dynamic-checkout-cart"></div>
</div>
</div>
</div>
</div>
</form>
GET /search
<form action="/search" method="get" class="input-group search" role="search">
<label for="search" class="hidden">Submit</label>
<div class="flex items-center justify-between">
<button class="py-2 mr-4" aria-label="Submit" type="submit">
<span class="inline-block w-5 h-5 align-middle"><svg aria-hidden="true" focusable="false" role="presentation" class="icon fill-current icon-search" viewBox="0 0 24 24">
<path fill-rule="evenodd"
d="M10.533 17.438a6.968 6.968 0 01-6.96-6.96 6.968 6.968 0 016.96-6.96 6.968 6.968 0 016.96 6.96 6.968 6.968 0 01-6.96 6.96zm6.949-1.314a8.917 8.917 0 002.01-5.646c0-4.941-4.02-8.96-8.96-8.96-4.94 0-8.96 4.019-8.96 8.96 0 4.94 4.02 8.96 8.96 8.96 2.082 0 3.996-.72 5.52-1.916l4.962 4.96 1.415-1.413-4.947-4.945z">
</path>
</svg></span>
<span class="visually-hidden">Submit</span>
</button>
<input x-ref="searchInput" id="search" type="text" name="q" value="" placeholder="Search" class="placeholder-current font-body w-full block bg-transparent" aria-label="Search" data-search-input="">
<button class="py-2 ml-4" @click="searchOpen = false" type="button">
<span class="visually-hidden">Close</span>
<span class="inline-block w-5 h-5 align-middle"><svg aria-hidden="true" focusable="false" role="presentation" class="icon fill-current icon-close" viewBox="0 0 24 24">
<path fill-rule="evenodd" d="M18.364 4.222l1.414 1.414L13.414 12l6.364 6.364-1.414 1.414L12 13.414l-6.364 6.364-1.414-1.414L10.586 12 4.222 5.636l1.414-1.414L12 10.586z"></path>
</svg></span>
</button>
</div>
</form>
GET /search
<form action="/search" method="get" class="input-group search" role="search">
<label for="search" class="hidden">Submit</label>
<div class="flex items-center justify-between">
<button class="py-2 mr-4" aria-label="Submit" type="submit">
<span class="inline-block w-5 h-5 align-middle"><svg aria-hidden="true" focusable="false" role="presentation" class="icon fill-current icon-search" viewBox="0 0 24 24">
<path fill-rule="evenodd"
d="M10.533 17.438a6.968 6.968 0 01-6.96-6.96 6.968 6.968 0 016.96-6.96 6.968 6.968 0 016.96 6.96 6.968 6.968 0 01-6.96 6.96zm6.949-1.314a8.917 8.917 0 002.01-5.646c0-4.941-4.02-8.96-8.96-8.96-4.94 0-8.96 4.019-8.96 8.96 0 4.94 4.02 8.96 8.96 8.96 2.082 0 3.996-.72 5.52-1.916l4.962 4.96 1.415-1.413-4.947-4.945z">
</path>
</svg></span>
<span class="visually-hidden">Submit</span>
</button>
<input x-ref="searchInput" id="search" type="text" name="q" value="" placeholder="Search" class="placeholder-current font-body w-full block bg-transparent" aria-label="Search" data-search-input="">
<button class="py-2 ml-4" @click="searchOpen = false" type="button">
<span class="visually-hidden">Close</span>
<span class="inline-block w-5 h-5 align-middle"><svg aria-hidden="true" focusable="false" role="presentation" class="icon fill-current icon-close" viewBox="0 0 24 24">
<path fill-rule="evenodd" d="M18.364 4.222l1.414 1.414L13.414 12l6.364 6.364-1.414 1.414L12 13.414l-6.364 6.364-1.414-1.414L10.586 12 4.222 5.636l1.414-1.414L12 10.586z"></path>
</svg></span>
</button>
</div>
</form>
POST /contact#contact_form
<form method="post" action="/contact#contact_form" id="contact_form" accept-charset="UTF-8" class="contact-form"><input type="hidden" name="form_type" value="customer"><input type="hidden" name="utf8" value="✓">
<input type="hidden" name="contact[tags]" value="newsletter">
<div class="lg:ml-4 lg:flex items-end">
<label class="visually-hidden" for="Email-footer">Email</label>
<input type="email" class="placeholder-current font-body border-b-text border-current w-full block bg-transparent pb-1" name="contact[email]" id="Email-footer" value="" placeholder="Email" autocorrect="off" autocapitalize="off">
<button class="mt-2 lg:mt-0 lg:ml-2 pb-1 font-body align-top inline-flex items-center justify-center hover:text-secondary-accent " type="submit" name="commit" id="Subscribe">
<span class="uppercase whitespace-nowrap">Subscribe →</span>
</button>
</div>
</form>
POST /localization
<form method="post" action="/localization" id="localization_form" accept-charset="UTF-8" class="shopify-localization-form" enctype="multipart/form-data" data-disclosure-form=""><input type="hidden" name="form_type" value="localization"><input
type="hidden" name="utf8" value="✓"><input type="hidden" name="_method" value="put"><input type="hidden" name="return_to" value="/">
<div class="inline-block">
<h2 class="visually-hidden" id="currency-heading"> Currency </h2>
<div class="relative" data-disclosure-currency="">
<button type="button" class="text-sm border-b-text border-footer-text py-1" aria-expanded="false" aria-controls="currency-list" aria-describedby="currency-heading" data-disclosure-toggle=""> GBP £<span
class="inline-block ml-1 w-3 fill-current">
<svg aria-hidden="true" focusable="false" role="presentation" class="icon fill-current icon-chevron-down" viewBox="0 0 24 24">
<path fill-rule="evenodd" d="M12 16.596L4.222 8.818l1.414-1.414L12 13.768l6.364-6.364 1.414 1.414z"></path>
</svg>
</span>
</button>
<ul id="currency-list" class="disclosure-list absolute bg-footer-background opacity-0 top-0 left-0 lg:left-auto lg:right-0 transform transition-opacity border-text border-theme-color py-2" data-disclosure-list="" inert="" aria-hidden="true">
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="AED" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">AED د.إ</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="AFN" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">AFN ؋</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="ALL" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">ALL L</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="AMD" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">AMD դր.</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="ANG" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">ANG ƒ</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="AUD" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">AUD $</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="AWG" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">AWG ƒ</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="AZN" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">AZN ₼</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="BAM" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">BAM КМ</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="BBD" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">BBD $</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="BDT" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">BDT ৳</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="BGN" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">BGN лв.</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="BIF" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">BIF Fr</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="BND" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">BND $</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="BOB" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">BOB Bs.</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="BSD" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">BSD $</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="BWP" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">BWP P</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="BZD" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">BZD $</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="CAD" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">CAD $</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="CDF" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">CDF Fr</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="CHF" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">CHF CHF</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="CNY" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">CNY ¥</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="CRC" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">CRC ₡</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="CVE" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">CVE $</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="CZK" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">CZK Kč</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="DJF" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">DJF Fdj</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="DKK" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">DKK kr.</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="DOP" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">DOP $</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="DZD" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">DZD د.ج</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="EGP" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">EGP ج.م</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="ETB" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">ETB Br</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="EUR" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">EUR €</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="FJD" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">FJD $</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="FKP" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">FKP £</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" aria-current="true" data-value="GBP" data-disclosure-option="" tabindex="-1">
<span class="border-footer-text border-b-text">GBP £</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="GMD" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">GMD D</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="GNF" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">GNF Fr</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="GTQ" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">GTQ Q</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="GYD" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">GYD $</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="HKD" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">HKD $</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="HNL" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">HNL L</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="HUF" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">HUF Ft</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="IDR" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">IDR Rp</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="ILS" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">ILS ₪</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="INR" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">INR ₹</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="ISK" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">ISK kr</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="JMD" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">JMD $</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="JPY" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">JPY ¥</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="KES" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">KES KSh</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="KGS" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">KGS som</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="KHR" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">KHR ៛</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="KMF" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">KMF Fr</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="KRW" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">KRW ₩</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="KYD" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">KYD $</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="KZT" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">KZT 〒</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="LAK" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">LAK ₭</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="LBP" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">LBP ل.ل</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="LKR" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">LKR ₨</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="MAD" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">MAD د.م.</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="MDL" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">MDL L</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="MKD" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">MKD ден</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="MMK" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">MMK K</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="MNT" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">MNT ₮</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="MOP" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">MOP P</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="MUR" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">MUR ₨</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="MVR" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">MVR MVR</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="MWK" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">MWK MK</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="MYR" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">MYR RM</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="NGN" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">NGN ₦</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="NIO" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">NIO C$</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="NPR" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">NPR ₨</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="NZD" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">NZD $</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="PEN" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">PEN S/.</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="PGK" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">PGK K</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="PHP" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">PHP ₱</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="PKR" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">PKR ₨</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="PLN" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">PLN zł</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="PYG" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">PYG ₲</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="QAR" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">QAR ر.ق</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="RON" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">RON Lei</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="RSD" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">RSD РСД</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="RWF" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">RWF FRw</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="SAR" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">SAR ر.س</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="SBD" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">SBD $</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="SEK" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">SEK kr</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="SGD" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">SGD $</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="SHP" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">SHP £</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="SLL" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">SLL Le</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="STD" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">STD Db</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="THB" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">THB ฿</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="TJS" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">TJS ЅМ</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="TOP" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">TOP T$</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="TTD" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">TTD $</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="TWD" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">TWD $</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="TZS" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">TZS Sh</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="UAH" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">UAH ₴</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="UGX" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">UGX USh</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="USD" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">USD $</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="UYU" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">UYU $</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="UZS" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">UZS </span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="VND" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">VND ₫</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="VUV" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">VUV Vt</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="WST" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">WST T</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="XAF" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">XAF Fr</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="XCD" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">XCD $</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="XOF" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">XOF Fr</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="XPF" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">XPF Fr</span>
</a>
</li>
<li class="text-sm w-20">
<a class="block p-2" href="#" data-value="YER" data-disclosure-option="" tabindex="-1">
<span class="border-transparent border-b-text">YER ﷼</span>
</a>
</li>
</ul>
<input type="hidden" name="currency_code" id="CurrencySelector" value="GBP" data-disclosure-input="">
</div>
</div>
</form>
<form class="needsclick klaviyo-form klaviyo-form-version-cid_1 kl-private-reset-css-Xuajs1" data-testid="klaviyo-form-UQRCjc" novalidate="" tabindex="-1"
style="display: flex; flex-direction: row; box-sizing: border-box; width: 600px; min-width: 200px; max-width: 1000px; border-radius: 0px; border-style: solid; border-width: 1px; border-color: rgb(0, 0, 0); background-color: rgb(255, 255, 255); background-repeat: no-repeat; background-position-y: 50%; padding: 20px; flex: 1 1 0%;">
<div class="needsclick kl-private-reset-css-Xuajs1" style="display: flex; flex-direction: column; width: 100%; margin: 0px; padding: 0px 20px 0px 0px; min-height: 400px; justify-content: center;">
<div data-testid="form-row" class="needsclick kl-private-reset-css-Xuajs1" style="display: flex; flex-direction: row; align-items: stretch; position: relative;">
<div component="[object Object]" data-testid="form-component" class="needsclick kl-private-reset-css-Xuajs1" style="display: flex; justify-content: flex-start; padding: 40px 6px 0px; position: relative; flex: 1 0 0px;">
<div class="kl-private-reset-css-Xuajs1 go3176171171" style="width: 100%;">
<p style="font-size: 14px; font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif; font-weight: 400; text-align: center;"><span
style="color: #090909; font-size: 14px; font-family: Chivo, Helvetica, Arial, sans-serif; font-weight: bold;">SIGN UP TO HEAR FIRST</span></p>
</div>
</div>
</div>
<div data-testid="form-row" class="needsclick kl-private-reset-css-Xuajs1" style="display: flex; flex-direction: row; align-items: stretch; position: relative;">
<div component="[object Object]" data-testid="form-component" class="needsclick kl-private-reset-css-Xuajs1" style="display: flex; justify-content: flex-start; padding: 10px 6px; position: relative; flex: 1 0 0px;">
<div class="kl-private-reset-css-Xuajs1 go3176171171" style="width: 100%;">
<p style="text-align: center; line-height: 75%;"><span style="font-size: 11px; font-family: Chivo, Helvetica, Arial, sans-serif; font-weight: 400;">Join our mailing list to receive exclusive offers, first looks at new products, and latest
news.</span></p>
</div>
</div>
</div>
<div data-testid="form-row" class="needsclick kl-private-reset-css-Xuajs1" style="display: flex; flex-direction: row; align-items: stretch; position: relative;">
<div component="[object Object]" data-testid="form-component" class="needsclick kl-private-reset-css-Xuajs1" style="display: flex; justify-content: flex-start; padding: 20px 4px 10px; position: relative; flex: 1 0 0px;">
<div class="needsclick kl-private-reset-css-Xuajs1" style="display: flex; flex-grow: 1; flex-direction: column; align-self: flex-end;"><input id="email_57471944" class="needsclick go1497811988 kl-private-reset-css-Xuajs1" type="email"
autocomplete="email" name="email" tabindex="0" placeholder="EMAIL" aria-label="EMAIL" aria-invalid="false" options="[object Object]"
style="box-sizing: border-box; border-radius: 0px; padding: 0px 0px 0px 16px; height: 50px; text-align: left; color: rgb(0, 0, 0); font-family: Chivo, Helvetica, Arial, sans-serif; font-size: 12px; font-weight: 400; letter-spacing: 0px; background-color: rgb(255, 255, 255); border: 1px solid rgb(0, 0, 0);">
<div class="needsclick kl-private-reset-css-Xuajs1" style="width: 100%; position: relative;"></div>
</div>
</div>
</div>
<div data-testid="form-row" class="needsclick kl-private-reset-css-Xuajs1" style="display: flex; flex-direction: row; align-items: stretch; position: relative;">
<div component="[object Object]" data-testid="form-component" class="needsclick kl-private-reset-css-Xuajs1" style="display: flex; justify-content: flex-start; padding: 0px 0px 30px; position: relative; flex: 1 0 0px;"><button
class="needsclick go3894874857 kl-private-reset-css-Xuajs1" type="button" tabindex="0"
style="background: rgb(0, 47, 167); border-radius: 100px; border-style: none; border-color: rgb(255, 255, 255); border-width: 10px; color: rgb(255, 255, 255); font-family: Chivo, Helvetica, Arial, sans-serif; font-size: 12px; font-weight: 400; letter-spacing: 0px; line-height: 1; white-space: normal; padding-top: 0px; padding-bottom: 0px; text-align: center; word-break: break-word; align-self: flex-end; cursor: pointer; height: 40px; width: 100%;">SIGN
UP NOW</button></div>
</div>
<div data-testid="form-row" class="needsclick kl-private-reset-css-Xuajs1" style="display: flex; flex-direction: row; align-items: stretch; position: relative;">
<div component="[object Object]" data-testid="form-component" class="needsclick kl-private-reset-css-Xuajs1" style="display: flex; justify-content: flex-start; padding: 10px 6px; position: relative; flex: 1 0 0px;">
<div class="kl-private-reset-css-Xuajs1 go3176171171" style="width: 100%;">
<p style="font-size: 14px; font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif; font-weight: 400; text-align: center; line-height: 75%;"><span
style="font-family: Helvetica, Arial, sans-serif; font-weight: 400; font-size: 8px; color: #858585;">By clicking SIGN UP NOW, You are agreeing to receive marketing SMS from DISC Projects at the number provided. View our Privacy Policy
and <a href="https://discprojects.co.uk/pages/terms-and-conditions" style="font-family: Helvetica, Arial, sans-serif; font-weight: 400; color: #858585;">Terms and Conditions</a></span></p>
</div>
</div>
</div>
</div>
<div class="needsclick kl-private-reset-css-Xuajs1"
style="display: flex; flex-direction: column; width: 200px; margin: -21px -21px -21px 0px; padding: 0px; border-top: 1px solid transparent; border-right: 1px solid transparent; border-bottom: 1px solid transparent; border-left: 0px; border-bottom-right-radius: 0px; border-top-right-radius: 0px; overflow: hidden; min-width: 200px; min-height: 400px;">
<div class="needsclick kl-private-reset-css-Xuajs1"
style="background-image: url("https://d3k81ch9hvuctc.cloudfront.net/company/YyKi64/images/ff3bde5e-ddab-4a69-8923-a0052d4fd26b.gif"); background-repeat: no-repeat; background-size: cover; background-position: 50% 50%; width: 100%; height: 100%; display: block;">
</div>
</div><input type="submit" tabindex="-1" value="Submit" style="display: none;">
</form>
Text Content
YOUR LOCATION IS SET TO CANADA * Shop in CAD $ * Get shipping options for Canada Continue Change country Skip to content MENU Close * SHOP * ALL * TEES * SWEATSHIRTS * KNITWEAR * BOTTOMS * HEADWEAR * WORLD * RADIO * JOURNAL * ABOUT * ABOUT US * STOCKISTS * ABOUT US * STOCKISTS * MAILING LIST * * Account Search Submit * Twitter * Instagram * Email YOUR CART - 0 ITEMS Close Your cart is currently empty. Enable cookies to use the shopping cart : − Remove Regular price Sale price / − Discount Subtotal Tax included. Shipping calculated at checkout. READ: "Nam June Paik: Predicting the Internet" SEARCH Submit Submit Close 0 items MENU SEARCH Submit Submit Close 0 items BE THE FIRST TO KNOW Join our mailing list to receive exclusive offers, first looks at new products, and latest news. Email Subscribe → DISC PROJECTS * ABOUT US * STOCKISTS * MAILING LIST CUSTOMER CARE * SHIPPING * RETURNS * TERMS * Twitter * Instagram * Email © 2023, DISC Projects. All rights reserved. PAYMENT METHODS * Amazon * American Express * Apple Pay * Diners Club * Discover * Google Pay * Maestro * Mastercard * PayPal * Shop Pay * Visa CURRENCY GBP £ * AED د.إ * AFN ؋ * ALL L * AMD դր. * ANG ƒ * AUD $ * AWG ƒ * AZN ₼ * BAM КМ * BBD $ * BDT ৳ * BGN лв. * BIF Fr * BND $ * BOB Bs. * BSD $ * BWP P * BZD $ * CAD $ * CDF Fr * CHF CHF * CNY ¥ * CRC ₡ * CVE $ * CZK Kč * DJF Fdj * DKK kr. * DOP $ * DZD د.ج * EGP ج.م * ETB Br * EUR € * FJD $ * FKP £ * GBP £ * GMD D * GNF Fr * GTQ Q * GYD $ * HKD $ * HNL L * HUF Ft * IDR Rp * ILS ₪ * INR ₹ * ISK kr * JMD $ * JPY ¥ * KES KSh * KGS som * KHR ៛ * KMF Fr * KRW ₩ * KYD $ * KZT 〒 * LAK ₭ * LBP ل.ل * LKR ₨ * MAD د.م. * MDL L * MKD ден * MMK K * MNT ₮ * MOP P * MUR ₨ * MVR MVR * MWK MK * MYR RM * NGN ₦ * NIO C$ * NPR ₨ * NZD $ * PEN S/. * PGK K * PHP ₱ * PKR ₨ * PLN zł * PYG ₲ * QAR ر.ق * RON Lei * RSD РСД * RWF FRw * SAR ر.س * SBD $ * SEK kr * SGD $ * SHP £ * SLL Le * STD Db * THB ฿ * TJS ЅМ * TOP T$ * TTD $ * TWD $ * TZS Sh * UAH ₴ * UGX USh * USD $ * UYU $ * UZS * VND ₫ * VUV Vt * WST T * XAF Fr * XCD $ * XOF Fr * XPF Fr * YER ﷼ * Choosing a selection results in a full page refresh. * Press the space key then arrow keys to make a selection. Close form 1 SIGN UP TO HEAR FIRST Join our mailing list to receive exclusive offers, first looks at new products, and latest news. SIGN UP NOW By clicking SIGN UP NOW, You are agreeing to receive marketing SMS from DISC Projects at the number provided. View our Privacy Policy and Terms and Conditions