Getting Started with BMIS
Learn how to set up your BMIS account and create your first event in minutes, with no credit card required.
Prerequisites
No credit card is required to get started. You only need:
- A valid email address
- A web browser (Chrome, Firefox, or Safari recommended)
BMIS works seamlessly across devices, so you can start planning events immediately.
Create Your Account
Sign up for a free BMIS account to access the dashboard and begin creating events.
Visit the Sign-Up Page
Navigate to the BMIS registration page.
Fill in your email, create a password, and submit the form.
Verify Your Email
Check your inbox for a verification email from BMIS.
Click the verification link to activate your account.
Log In
Return to the login page and sign in with your credentials.
You'll be redirected to the dashboard automatically.
Dashboard Overview
Once logged in, the BMIS dashboard provides an intuitive interface for managing events. Key sections include:
Events
View, edit, and create events. Track registrations and revenue.
Analytics
Monitor attendance, ticket sales, and engagement metrics in real-time.
Settings
Manage account details, payment methods, and integrations.
Create Your First Event
Follow these steps to launch your first event quickly.
Start a New Event
Click the Create Event button on the dashboard.
Enter basic details like title, date, location, and description.
Configure Tickets
Add ticket types, prices, and quantities.
Enable options like early bird discounts if needed.
Publish and Share
Review settings and click Publish.
Copy the event URL or embed code to share with attendees.
Embed Your Event on Your Website
Share your event easily by embedding it on your site.
<iframe
src="https://app.bmis.com/events/your-event-id/embed"
width="100%"
height="600"
frameborder="0">
</iframe>
import { useEffect, useRef } from 'react';
function EventEmbed() {
const iframeRef = useRef();
useEffect(() => {
const iframe = iframeRef.current;
iframe.src = 'https://app.bmis.com/events/your-event-id/embed';
}, []);
return (
<iframe
ref={iframeRef}
width="100%"
height="600"
frameBorder="0"
title="BMIS Event Embed"
/>
);
}
Platform-Specific Setup Tips
Customize your initial setup based on your operating system or browser.
Ensure JavaScript is enabled. Use the latest version of your browser for optimal performance.
Bookmark https://app.bmis.com for quick access.
Download the BMIS app from your store or use the responsive web version.
Enable push notifications for event updates.
Next Steps
Congratulations! You've created your first BMIS event. Visit the dashboard to manage it or check our guides for more features.
Ready for more? Create additional events or book a demo for personalized support.
Last updated today