php - How to Redirect to the main page from pop up window in html -
i have html page login via gmail account . using pop window login. here menstion code,
my html code :
<body> <a href="<?php echo $login_url; ?>"target="popup" onclick="window.open('<?php echo $login_url; ?>','popup','width=600,height=600'); return false;"> sign in gmail </a> </body>
if click sign in gmail button means gmail opened in pop up. after giving mail id , password , click sign in means next page loaded inside pop only.
but want close pop window after sign in , redirect main page . how that. please 1 me
just remove onclick
handler , popup
target:
<a href="<?= $login_url ?>> sign in gmail </a>
Comments
Post a Comment