I have a Twig variable that I am using to show an intro section and then the actual form.
Variable
{% set intro = true %}
When true, the intro section shows up, for example below.
{% if intro == true %}
     <div class="Intro Wrapper Row">
        <div class="form-container">
        <div>
            <div>
                <button onclick="{{ intro|false }}">Lets Begin</button>
            </div>
    </div>
{% endif %}
{% if intro == false %}
    <div class="SurveyFormLogin Wrapper Row">
        <div class="form-container">
        </div>
    </div>
in Twig, how can I set the intro to false so that the Intro hides and Survey shows? or is this the best way to approach this in Twig?
 
    