New Account Registration

* Required  

Login data


Allowed chars: A-Z a-z 0-9 _.+?#-*@!$%~/:;
The password must have a length of at least of 6 characters.

Personal Data

Contact Information

Retype E-Mail

Settings

Terms of Service

/** * All config. options available here: * https://cookieconsent.orestbida.com/reference/configuration-reference.html */ CookieConsent.run({ // root: 'body', // autoShow: true, // disablePageInteraction: true, // hideFromBots: true, // mode: 'opt-in', // revision: 0, cookie: { name: 'cc_cookie', // domain: location.hostname, // path: '/', // sameSite: "Lax", // expiresAfterDays: 182, }, // https://cookieconsent.orestbida.com/reference/configuration-reference.html#guioptions guiOptions: { consentModal: { layout: 'cloud inline', position: 'bottom center', equalWeightButtons: true, flipButtons: false }, preferencesModal: { layout: 'box', equalWeightButtons: true, flipButtons: false } }, onFirstConsent: () => { console.log('onFirstConsent fired',cookie); }, onConsent: () => { console.log('onConsent fired!', cookie) }, onChange: ({changedCategories, changedServices}) => { console.log('onChange fired!', changedCategories, changedServices); }, onModalReady: () => { console.log('ready:', modalName); }, onModalShow: () => { console.log('visible:', modalName); }, onModalHide: () => { console.log('hidden:', modalName); }, categories: { necessary: { enabled: true, // this category is enabled by default readOnly: true // this category cannot be disabled }, analytics: { autoClear: { cookies: [ { name: /^_ga/, // regex: match all cookies starting with '_ga' }, { name: '_gid', // string: exact cookie name } ] }, // https://cookieconsent.orestbida.com/reference/configuration-reference.html#category-services services: { ga: { label: 'Google Analytics', onAccept: () => {}, onReject: () => {} }, youtube: { label: 'Youtube Embed', onAccept: () => {}, onReject: () => {} }, } }, ads: {} }, language: { default: 'en', translations: { en: { consentModal: { title: 'We use cookies', description: 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua', acceptAllBtn: 'Accept all', acceptNecessaryBtn: 'Reject all', showPreferencesBtn: 'Manage Individual preferences', // closeIconLabel: 'Reject all and close modal', footer: ` Impressum Privacy Policy `, }, preferencesModal: { title: 'Manage cookie preferences', acceptAllBtn: 'Accept all', acceptNecessaryBtn: 'Reject all', savePreferencesBtn: 'Accept current selection', closeIconLabel: 'Close modal', serviceCounterLabel: 'Service|Services', sections: [ { title: 'Your Privacy Choices', description: `In this panel you can express some preferences related to the processing of your personal information. You may review and change expressed choices at any time by resurfacing this panel via the provided link. To deny your consent to the specific processing activities described below, switch the toggles to off or use the “Reject all” button and confirm you want to save your choices.`, }, { title: 'Strictly Necessary', description: 'These cookies are essential for the proper functioning of the website and cannot be disabled.', //this field will generate a toggle linked to the 'necessary' category linkedCategory: 'necessary' }, { title: 'Performance and Analytics', description: 'These cookies collect information about how you use our website. All of the data is anonymized and cannot be used to identify you.', linkedCategory: 'analytics', cookieTable: { caption: 'Cookie table', headers: { name: 'Cookie', domain: 'Domain', desc: 'Description' }, body: [ { name: '_ga', domain: location.hostname, desc: 'Description 1', }, { name: '_gid', domain: location.hostname, desc: 'Description 2', } ] } }, { title: 'Targeting and Advertising', description: 'These cookies are used to make advertising messages more relevant to you and your interests. The intention is to display ads that are relevant and engaging for the individual user and thereby more valuable for publishers and third party advertisers.', linkedCategory: 'ads', }, { title: 'More information', description: 'For any queries in relation to my policy on cookies and your choices, please contact us' } ] } } } } });
 
* Required