Can I make a view stay inside a bootstrap modal?

Hello everyone, good night

I was thinking and trying to put a login view in a modal of bootstrap 3, on my learning blog, i tried using $this->extend and view blocks, but unfortunately it does not work for some reason… if you have any ideas that could help me, i’d appreciate it.

I will show the code I tried using view blocks, below.

<!--app/View/Users/login.ctp !-->


<?php 

$this->start('something'); ?>
  <h1>Appeared now!!</h1>
<?php $this->end(); ?>

And

<!--app/View/Posts/index.ctp !-->

<?php 

echo $this->fetch('something'); ?>

<h1>Bem vindo!</h1>
<h3>Clique em algum dos campos acima.</h2>

OBS: the bootstrap layout is in behavior beforeFilter

Load as a server fetched partial.

1 Like