https://www.aaatlab.com/login

Submitted URL:
https://www.aaatlab.com/userRedirected
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

Console log messages · 1 found

Messages logged to the web console

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, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, viewport-fit=cover">
    <title>AAA | Login</title>
    <link rel="stylesheet" href="/static/home/layui/css/layui.css">
    <link rel="stylesheet" href="/static/home/css/reset.css">
    <link rel="stylesheet" href="/static/home/css/style.css">
    <script type="text/javascript" src="/static/home/js/jquery-3.5.1.min.js"></script>
    <script type="text/javascript" src="/static/home/layui/layui.js"></script>
<script async="" charset="utf-8" src="https://www.aaatlab.com/static/home/layui/lay/modules/layer.js"></script></head>
<body class="bgColor">
<div class="warp">
    <div class="login-head">
        <img src="/static/home/images/logo.png" alt="">
        <p>Technology Creates The Future</p>
    </div>
    <div class="login">
        <div class="login-item">
            <img src="/static/home/images/icon_1.png" alt="">
            <span class="areaCode">+91</span>
            <div class="login-input">
                <input type="text" name="mobile" placeholder="please enter phone number">
            </div>
        </div>
        <div class="login-item">
            <img src="/static/home/images/icon_2.png" alt="">
            <div class="login-input">
                <input type="password" name="password" placeholder="please enter password">
            </div>
        </div>
        <div class="continue-top">
            <a href="https://www.aaatlab.com/recover">Forget Password?</a>
        </div>
        <button type="button" class="login-btn">Login</button>
        <div class="continue-btm">
            <p>Not registered yet?<a href="https://www.aaatlab.com/register">Register</a></p>
        </div>
    </div>
</div>

<script type="text/javascript">
    var _token = "6ClVUGvl2gSh7pieugXpy33DYmk8qPKL0VMXDWhX";
    layui.use(['form', 'layer'], function () {
        $ = layui.jquery;
        var form = layui.form, layer = layui.layer;
        $("body").on('click', '.login-btn', function () {
            var _this = $(this);
            _this.attr('disabled', true);
            var loading = layer.load(2, {shade: [0.5, '#393D49']});
            var mobile = $.trim($("input[name='mobile']").val());
            var password = $("input[name='password']").val();
            if (mobile.length == 0) {
                layer.close(loading);
                _this.attr('disabled', false);
                layer.msg('please enter phone number', {icon: 16, time: 1000, shade: [0.5, '#393D49']});
                return false;
            }
            if (password.length == 0) {
                layer.close(loading);
                _this.attr('disabled', false);
                layer.msg('please enter password', {icon: 16, time: 1000, shade: [0.5, '#393D49']});
                return false;
            }
            var data = {mobile: mobile, password: password, _token: _token};
            $.post("https://www.aaatlab.com/login", data, function (result) {
                layer.close(loading);
                _this.attr('disabled', false);
                switch (result.code) {
                    case 200:
                        layer.msg('success', {icon: 16, time: 1000, shade: [0.5, '#393D49']}, function () {
                            location.href = "https://www.aaatlab.com";
                        });
                        break;
                    default:
                        layer.msg(result.msg, {icon: 16, time: 1000, shade: [0.5, '#393D49']});
                }
                return false;
            }, "json").fail(function () {
                layer.close(loading);
                _this.attr('disabled', false);
                return false;
            });
        });
    });
</script>


</body></html>