avatar avatar avatar avatar
5K+ Users trust Crezlo

Secure, Reliable, and Easy-to-Use Password Vault

Keep all your credentials safe in one encrypted platform. Access them anytime while maintaining complete security.

Overview of Features

Explore the main functionalities and benefits that help you get the most out of our platform.

Secure Password Storage

Store all your passwords safely with end-to-end encryption and zero-knowledge architecture.

Password Generator

Generate strong, unique passwords with customizable rules for length, complexity, and character types.

Browser & App Autofill

Automatically fill login credentials in websites and apps, reducing time and preventing typing errors.

Two-Factor Authentication Storage

Securely store and generate TOTP codes for two-factor authentication directly inside the vault.

Encrypted Notes & Documents

Store sensitive notes, documents, or personal data securely alongside your passwords.

Cross-Device Sync

Access passwords, notes, and documents across devices securely with automatic synchronization.

Password Sharing

Share credentials securely with team members without exposing the plain text passwords.

Breach Monitoring

Automatically check if your credentials have been exposed in data breaches and alert you immediately.

Activity Logs & Audit Trail

Track access and changes to your vault items with detailed logs and timestamps for accountability.

Offline Access

Access saved passwords and notes securely even without an internet connection.

Secure Backup & Restore

Backup your vault data encrypted to the cloud and restore it safely whenever needed.

Biometric Login

Unlock your vault instantly using fingerprint or face recognition for enhanced security and convenience.

Real Stories. Measurable Success.

Really impressed with Crezlo Tours! The UI feels clean and intuitive, and the results look super professional. The Dollhouse feature is an absolute game-changer, such a smart addition for 360° virtual tours. Love how easy it is to customize and brand. Great job team

Abhijit Saha

Design Lead (Socially)

Crezlo Flipbooks elevated our presentations. Clients love the smooth page flips and embedded media. Makes our content much more memorable.

Andy Kaplan

Founder

Crezlo Tours is fantastic! The Dollhouse feature makes exploring spaces so intuitive and interactive. Customizing branding and adding hotspots is super easy, and the tours always look professional. Highly recommended for real estate, events, or any immersive experience!

Jyoti Kyamsaria

Founder (TeamUp Property)

Crezlo Tours has transformed how we present spaces. The customization options are great, and tours feel interactive and engaging. Clients spend more time exploring, and the feedback has been amazing. A truly professional tool for immersive experiences

Saif

Operations Head (BrandSwitch)

Featured Products

Explore our range of solutions created to elevate your digital experience.

See All

Power your business. The Crezlo way

Tailored solutions, dedicated support and integrations that fit your workflow.

// Active Menu Indicator - Like blog.crezlo.com (function() { const navLinks = document.querySelectorAll('.nav-link'); const activeIndicator = document.getElementById('active-indicator'); const nav = document.querySelector('#product-navbar nav'); const productNavbar = document.getElementById('product-navbar'); if (!navLinks.length || !activeIndicator || !nav || !productNavbar) return; // Get current path const currentPath = window.location.pathname; // Find active link let activeLink = null; navLinks.forEach(link => { const linkHref = link.getAttribute('href'); // Check if current path matches this link if (currentPath === linkHref || currentPath.startsWith(linkHref + '/')) { activeLink = link; link.classList.add('text-gray-900', 'font-medium'); } else { link.classList.remove('text-gray-900', 'font-medium'); } }); // Position indicator under active link, touching the border const updateIndicator = () => { if (activeLink) { const navbarRect = productNavbar.getBoundingClientRect(); const linkRect = activeLink.getBoundingClientRect(); // Calculate position relative to product-navbar (to touch the border) activeIndicator.style.left = (linkRect.left - navbarRect.left) + 'px'; activeIndicator.style.width = linkRect.width + 'px'; // Position at the very bottom (0px) to touch the border activeIndicator.style.bottom = '0px'; activeIndicator.style.display = 'block'; } else { activeIndicator.style.display = 'none'; } }; // Update on load and resize if (document.readyState === 'loading') { document.addEventListener('DOMContentLoaded', updateIndicator); } else { setTimeout(updateIndicator, 50); } window.addEventListener('resize', updateIndicator); // Update when links are clicked (for smooth transition) navLinks.forEach(link => { link.addEventListener('click', () => { setTimeout(updateIndicator, 100); }); }); })(); // Position mega menu dropdown right below core navbar and fix hover gap (function() { const coreNavbar = document.getElementById('core-navbar'); const megaMenuDropdown = document.querySelector('.mega-menu-dropdown'); const megaMenuContainer = document.querySelector('.mega-menu-container'); const header = document.querySelector('header'); if (!coreNavbar || !megaMenuDropdown || !megaMenuContainer || !header) return; const updateMegaMenuPosition = () => { if (window.innerWidth >= 768) { // Check if core navbar is visible const isCoreNavbarHidden = coreNavbar.classList.contains('navbar-hidden'); if (isCoreNavbarHidden) { // If core navbar is hidden, position below product navbar const productNavbar = document.getElementById('product-navbar'); if (productNavbar) { const productNavbarRect = productNavbar.getBoundingClientRect(); megaMenuDropdown.style.top = productNavbarRect.bottom + 'px'; } else { megaMenuDropdown.style.top = '70px'; } } else { // If core navbar is visible, position below it const coreNavbarRect = coreNavbar.getBoundingClientRect(); const coreNavbarBottom = coreNavbarRect.bottom; megaMenuDropdown.style.top = coreNavbarBottom + 'px'; } } else { megaMenuDropdown.style.top = '0px'; } }; // Add delay before closing to allow mouse movement let closeTimeout; const showMenu = () => { clearTimeout(closeTimeout); updateMegaMenuPosition(); // Update position before showing megaMenuDropdown.style.opacity = '1'; megaMenuDropdown.style.visibility = 'visible'; megaMenuDropdown.style.pointerEvents = 'auto'; megaMenuDropdown.style.transform = 'translateX(-50%) translateY(0)'; }; const hideMenu = () => { closeTimeout = setTimeout(() => { megaMenuDropdown.style.opacity = '0'; megaMenuDropdown.style.visibility = 'hidden'; megaMenuDropdown.style.pointerEvents = 'none'; megaMenuDropdown.style.transform = 'translateX(-50%) translateY(-10px)'; }, 200); }; megaMenuContainer.addEventListener('mouseenter', showMenu); megaMenuContainer.addEventListener('mouseleave', (e) => { const relatedTarget = e.relatedTarget; if (!relatedTarget || (!megaMenuDropdown.contains(relatedTarget) && relatedTarget !== megaMenuDropdown)) { hideMenu(); } }); megaMenuDropdown.addEventListener('mouseenter', showMenu); megaMenuDropdown.addEventListener('mouseleave', hideMenu); // Update on load and resize if (document.readyState === 'loading') { document.addEventListener('DOMContentLoaded', updateMegaMenuPosition); } else { updateMegaMenuPosition(); } window.addEventListener('resize', updateMegaMenuPosition); // Update when core navbar visibility changes const observer = new MutationObserver(() => { updateMegaMenuPosition(); // If menu is currently visible, update its position if (megaMenuDropdown.style.visibility === 'visible') { updateMegaMenuPosition(); } }); observer.observe(coreNavbar, { attributes: true, attributeFilter: ['class'] }); // Also update on scroll to catch navbar show/hide let scrollTimeout; window.addEventListener('scroll', () => { clearTimeout(scrollTimeout); scrollTimeout = setTimeout(() => { if (megaMenuDropdown.style.visibility === 'visible') { updateMegaMenuPosition(); } }, 100); }, { passive: true }); })();