Some users requested a way to customize the UI/UX of the widget. We understand every website has its own design guidelines to follow. An embed using iframe has a limited number of customization.
If you want complete control over the widget, follow the below steps to learn how to add a widget using custom code. Or head over to your waitlist integration page.
Step 1 - Create your form and replace the form's action endpoint with the one below. Make sure your form has a class name
launchlist-form and method is set to "POST"
<form class="launchlist-form" action="http://getlaunchlist.com/s/PUBLIC_KEY" method="POST">
Replace the PUBLIC_KEY with your waitlist key. You can find your waitlist key on the integration page.
Step 2 - Create an input to collect name and email.
<input name="name" type="text"> <input name="email" type="email">
Step 3. Add some JS to the head so we can track the referrals.