I'm creating a page that works like this:
The person accesses a registration page, and within this page there is a
iframe
with the registration form. When a person clicks oniframe
on sign up he redirects to another page I've created. But the new page appears insideiframe
, and I want the page containingiframe
to be redirected tosucesso.html
.
I already tried to use something like target=""
:
<form id="form1" target="_self" method="post" action="concluido.php">
But it continued the same way.