banner/trial-form.html

---
default_classes: "py-11"
---
{{#
/**
 * @name banner/trial-form
 * @description A partial for a banner with a trail-form
 * @see Uses partial {@link form/free-trial}
 * @todo Document property vars
 * @todo Set up defaults for vars
 * @todo Fix <code>default_classes</code> to use <code>custom_classes</code> with defaults
 */
 #}}
<section class="px-5 {{ custom_classes or default_classes }} {{ background_color }}">
  <div class="mw-grid mx-auto l--grid l--g-cols l--gap-m l--ai-center l--my-5">
    {{ global_free_trial_form }}
    <div class="m--g-col-6">
      <h2 class="title-2 ta-center mb-4 l--ta-left mt-0 l--title-4 l--mb-5 {{ text_color }}">{{ banner_title or global_free_trial_banner_title | widont }}</h2>
      <p class="body-3 ta-center l--ta-left fw-500 mb-8 l--mb-0 {{ text_color }}">{{ banner_copy or global_free_trial_banner_copy }}</p>
    </div>
    {{ /global_free_trial_form }}
    <div class="mt-8 mw-32 mx-auto m--mt-0 m--g-col-6 l--mx-0 l--mw-none l--pl-8">
      {{ partial:form/free-trial }}
    </div>
  </div>
</section>