Pen Settings

HTML

CSS

CSS Base

Vendor Prefixing

Add External Stylesheets/Pens

Any URLs added here will be added as <link>s in order, and before the CSS in the editor. You can use the CSS from another Pen by using its URL and the proper URL extension.

+ add another resource

JavaScript

Babel includes JSX processing.

Add External Scripts/Pens

Any URL's added here will be added as <script>s in order, and run before the JavaScript in the editor. You can use the URL of any other Pen and it will include the JavaScript from that Pen.

+ add another resource

Packages

Add Packages

Search for and use JavaScript packages from npm here. By selecting a package, an import statement will be added to the top of the JavaScript editor for this package.

Behavior

Auto Save

If active, Pens will autosave every 30 seconds after being saved once.

Auto-Updating Preview

If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.

Format on Save

If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.

Editor Settings

Code Indentation

Want to change your Syntax Highlighting theme, Fonts and more?

Visit your global Editor Settings.

HTML

              
                <!-- Form collecting both name and email  -->

<div>

   <!--  Building the form  -->
   <form class="launchlist-form" action="https://getlaunchlist.com/s/JZIFPd" method="post" target="_blank">
    
     <!--  Name Input  (Optional)   -->
     <input type="text" name="name" placeholder="Enter your name">
     <!--  Email Input     -->
     <input type="text" name="email" placeholder="Enter your email">
     
    <!--  Submit Button     -->
     <button type="submit">Join Waitlist</button>
     
   </form>
   
</div>

<!-- Script to track referrals -->
<script src="https://getlaunchlist.com/js/widget-diy.js" defer></script>




<!-- Logo -->
<a style="color:#333;text-decoration:none;margin-top:20px;display:block;" href="https://getlaunchlist.com/?ref=codepen_widget">
    <p style="margin:0px;">Waitlist powered by</p>
    <img src="https://res.cloudinary.com/launchlist/image/upload/v1652960498/media/Logo_2x_as9n4r.png" alt="LaunchList Logo" style="width:200px;">
</a>
              
            
!

CSS

              
                /* 
Add your own CSS to customize the UI of your form.
*/
              
            
!

JS

              
                // USE THIS IF YOU ARE NOT USING TRACKING SCRIPT

// // This function adds a ?ref query string at the end of form action URL so LaunchList can track the user referral. Without this referral won't work.

// // You have to write your own validation to validate email and empty input

// // Ref query string example - 
// // Your website URL https://example.com/?ref=alex83
// // Below function will modify the form action to https://getlaunchlist.com/s/JZIFPd/?ref=alex83


// function LaunchList() {

//     // Get query string from url
//     var loc = window.location.toString();
//     queryString = loc.split('?')[1];

//     // Get all the forms with .launchlist-form class
//     let forms = document.querySelectorAll(".launchlist-form");

//     // Update the form with referral id
//     forms.forEach(form => {

//         // Get the action url of the form
//         let action = form.getAttribute("action");

//         // Check if query string is present
//         if (
//             queryString !== null &&
//             queryString !== undefined &&
//             queryString !== ""
//         ) {

//             queryParams = "?" + queryString;
//             // update action url with query params
//             form.setAttribute("action", action + queryParams);
//         }
//         else {
//             // update action url without query params
//             form.setAttribute("action", action);
//         }
//     });

// }

// LaunchList();
              
            
!
999px

Console