How to make `prompt-login-email-verification` fire in template?

Hi,

I am trying to customise our login flow. We currently have a template like:

<body class="_widget-auto-layout">
    {% if prompt.name == "login" or prompt.name == "signup" %} 
        <div class="prompt-wrapper">
        {%- auth0:widget -%}
        </div>
    {% else %}
        {%- auth0:widget -%}
    {% endif %}
  </body>

which works fine.

What we are looking to do is add more prompts, i.e. require a user to verify email after sign up prompt. How do I go about using the login-email-verification prompt in our template / flow?
FWIW I’ve also tried the easy stuff like add

{% if prompt.name == "login-email-verification"%} 
        <div class="prompt-wrapper">
        {%- auth0:widget -%}
        </div>
{% endif %}

to our template etc.

The interwebs seem very light on proper examples / extended templates.

Trying to do this: Customize New Universal Login Text Prompts