Courses
We want to hire you for our studio WizardVFX.com
Project-based training + assets
Clients aren't hiring you because your demo reel is worse than competitors. The best way to learn is to do a project with prepared assets on screenshare with an expert (while building your demoreel for your marketing.. (TRIPPLY WAMMY)
Clients aren't hiring you because your demo reel is worse than competitors. Each package includes Training + Many VFX Assets (the best way to learn)
Build the shot with your own style and variation for your reel. Fix the #1 problem in your career using the #1 resource on the internet to build a superior VFX or Mograph demo reel. These resource packages will help you do it 10x faster. Members of our Artist Income Accelerator group get all packages for free and screenshare consultation with Lendon & experts to learn faster and create epic results.
document.addEventListener('DOMContentLoaded', () => {
// Check for a successful login event or token
const isLoggedIn = !!localStorage.getItem('userLoggedIn'); // Example check for a login flag
if (!isLoggedIn) {
// Assuming the login button or form has an ID 'loginButton'
const loginButton = document.getElementById('loginButton');
if (loginButton) {
loginButton.addEventListener('click', () => {
// Simulate a login action (replace this with your actual login logic)
localStorage.setItem('userLoggedIn', true); // Mark the user as logged in
setTimeout(() => {
location.reload(); // Reload the page after login
}, 500); // Optional delay to ensure login completes
});
}
} else {
console.log('User is already logged in.');
}
});