Open URL in my page without change Adreess

时间:2018-06-04 17:29:09

标签: php jquery html

I'm trying to open this link: https://clubedevantagenslidery.gointegro.com/auth/signin inside my page, because if I need change that service I need just to change the url.

    <html>
    <head>
    <script
    src="https://code.jquery.com/jquery-1.9.1.min.js"
    integrity="sha256-wS9gmOZBqsqWxgIVgA8Y9WcQOa7PgSIX+rPA0VL2rbQ="
    crossorigin="anonymous">
    </script>
    <meta charset="utf-8" />
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <base href="https://clubedevantagenslidery.gointegro.com/" target="_blank">
</head>
<body>
<?php 
    echo file_get_contents("https://clubedevantagenslidery.gointegro.com/auth/signin"); 
?>
</body>

<script>

var frm = document.getElementById('login-form') || null;
if(frm) {
   frm.action = 'https://clubedevantagenslidery.gointegro.com/auth/signin_check' 
}

</script>

</html>

This is the closer what I can get, added tag to open css/js files and jquery to change action of the form to the original URL, but when use form I get redirected and I dont want that.

I tried to do with PHP with require, jquery loading it in a div and iframe and nothing works.

Can anybody help to make this page works all inside my page without change url in adreess bar? Thanks!

0 个答案:

没有答案