The Outseta signup embed comes with a "plan selection" step out of the box. However, you may replace it with a custom design, such as a beautifully designed pricing table.

Preselect the plan

After creating your pricing table, wire each option to the correct plan using its unique identifier (uid), which you'll find on the plan's page in Outseta. 

Depending on the technology you are using, choose the appropriate approach below:

The data attributes approach

Add the data attribute data-plan-uid with its value set to the plan you would like to preselect.

<button
    data-o-auth="1"
    data-widget-mode="register"
    data-mode="popup"
    data-plan-uid="<your plan uid>"
>
    Sign up Free
</button>

The link approach

Add the query param planUid with its value set to the plan you would like to preselect. Or use the configurator found at Auth > Embeds > Signup.

<a href="https://snippets.outseta.com/auth?widgetMode=register&planUid=<your plan uid>#o-anonymous"
    Signup Free
</a>

Full Demo on Code Sandbox