How To Create JUICE Store & CDG Customer Account
Method #1
- Open your browser
- Enter your desired domain: http://juicestore.com/ or https://us.cdgcdgcdg.com/
- Right click on the browser window and select “Inspect” (Ctrl+Shift+I on Windows)
- Click on “Console” (at the bottom of the page)
- Paste the following code into the console, but DO NOT PRESS ENTER!
const firstName = ‘MyFirstName’;
const lastName = ‘MyLastName’;
const email = ‘myemail@gmail.com”;
const password = ‘MyPassword’;
var data = “form_type=create_customer&utf8=%E2%9C%93&customer%5Bfirst_name%5D=” + firstName + “&customer%5Blast_name%5D=” + lastName + “&customer%5Bemail%5D=” + email + “&customer%5Bpassword%5D=” + password;
jQuery.post(‘/account’, data).done(function (response) {
var logErrors = jQuery(response).find(‘.errors’).text();
if (logErrors != ” && logErrors != ‘undefined’) {
alert(logErrors);
}
else {
alert(‘Account created!’);
}
}).fail(function () {
alert(‘Failed to create account! Please try different details or activate a VPN!’);
});
- Replace MyFirstName, MyLastName, myemail@gmail.com & MyPassword with your personal info.
- Press ENTER
- Check your email for the account activation link. Some sites may not require further activation.