Galera ... I have a modal register. Being that I would like to call another modal, still being inside it. That is ... It would be superimposed on my modal of registration.
I'm using the code to call my modal in Bootstrap 4:
<button class="btn btn-outline-secundary my-2 my-sm-0" id="iniciaCadastro" type="button" data-toggle="modal" data-target="#cadastraModal">Cadastre-se</button>
The structure is similar to what we have in the bootstrap documentation. Using Header, Body and Footer.
In the footer, I try to call another modal, with terms and conditions details.
<a href="#" data-toggle="modal" data-target="#termosModal">Termos de uso</a>
But, it seems to me that bootstrap does not support this strategy ...
Can anyone help me solve this problem?