Showing source for: https://app.bulk.ly/login
Duration: 0.571588s
Server: cloudflare

<!DOCTYPE html>
<html lang="en">
    <head>
        <meta charset="utf-8">
        <meta content="IE=edge" http-equiv="X-UA-Compatible">
        <meta content="width=device-width, initial-scale=1" name="viewport">
        <meta content="bjMIMMaFD0Opz7f1zhbLIgTjfiAaRUt30BOtudUH" name="csrf-token">
        <title>
   Bulk.ly
        </title>
        <link href="https://app.bulk.ly/css/app.css" rel="stylesheet">
        <script>
            window.Laravel = {
                "csrfToken": "bjMIMMaFD0Opz7f1zhbLIgTjfiAaRUt30BOtudUH"
            };
        </script>
        <script>
            (function(w, d, s, l, i) {
                w[l] = w[l] || [];
                w[l].push({
                    'gtm.start': new Date().getTime(),
                    event: 'gtm.js'
                });
                var f = d.getElementsByTagName(s)[0], j = d.createElement(s), dl = l != 'dataLayer' ? '&l=' + l : '';
                j.async = true;
                j.src = 'https://www.googletagmanager.com/gtm.js?id=' + i + dl;
                f.parentNode.insertBefore(j, f);
            })(window, document, 'script', 'dataLayer', 'GTM-TLNT7S');
        </script>
        <style type="text/css">
            .auth-container  input.check-toog.left-toog+label {
                padding-left        : 50px;
            }
            .auth-container input.check-toog.left-toog+label:before {
                left                : 12px;
            }
        </style>
    </head>
    <body>
        <noscript>
            <iframe height="0" src="https://www.googletagmanager.com/ns.html?id=GTM-TLNT7S" style="display:none;visibility:hidden" width="0">
            </iframe>
        </noscript>
        <div id="app">
            <div class="container">
                <div class="row">
                    <div class="col-md-10 col-md-offset-1">
                        <div class="auth-container">
                            <div class="panel panel-default">
                                <div class="panel-body">
                                    <nav class="navbar">
                                        <div class="container-fluid">
                                            <div class="navbar-header">
                                                <a class="navbar-brand" href="/">
                                                    <img src="/images/logoWhite.png">
                                                </a>
                                            </div>
                                            <div class="collapse navbar-collapse">
                                                <ul class="nav navbar-nav navbar-right">
                                                    <li class="active">
                                                        <a href="https://app.bulk.ly/login">
                                                            Login
                                                        </a>
                                                    </li>
                                                </ul>
                                            </div>
                                        </div>
                                    </nav>
                                    <div class="tab-content">
                                        <div class="tab-pane active" id="Login" role="tabpanel">
                                            <h3 class="text-center">
                                                Welcome back!
                                            </h3>
                                            <form action="https://app.bulk.ly/auth/login" class="form-horizontal" method="POST" role="form">
                                                <input name="_token" type="hidden" value="bjMIMMaFD0Opz7f1zhbLIgTjfiAaRUt30BOtudUH">
                                                <div class="form-group">
                                                    <label class="col-md-4 control-label hide" for="email">
                                                        E-Mail Address
                                                    </label>
                                                    <div class="col-md-6 col-md-offset-3">
                                                        <i class="input-icon fa fa-envelope-o">
                                                        </i>
                                                        <input autofocus="" class="form-control" id="email" name="email" placeholder="Email" required="" type="email" value="">
                                                    </div>
                                                </div>
                                                <div class="form-group">
                                                    <label class="col-md-4 control-label hide" for="password">
                                                        Password
                                                    </label>
                                                    <div class="col-md-6 col-md-offset-3">
                                                        <i class="input-icon fa fa-lock">
                                                        </i>
                                                        <input class="form-control" id="password" name="password" placeholder="Password" required="" type="password">
                                                    </div>
                                                </div>
                                                <div class="form-group">
                                                    <div class="col-md-6 col-md-offset-3">
                                                        <div class="checkbox">
                                                            <input class="check-toog left-toog" id="Remember" name="remember" type="checkbox">
                                                            <label for="Remember">
                                                                Remember Me
                                                            </label>
                                                        </div>
                                                    </div>
                                                </div>
                                                <div class="form-group">
                                                    <div class="col-md-6 col-md-offset-3">
                                                        <button class="btn btn-default width-xl-btn btn-dc btn-block" type="submit">
                                                            Login
                                                        </button>
                                                        <div class="text-center">
                                                            <a class="btn btn-link" href="https://app.bulk.ly/password/reset">
                                                                Forgot Your Password?
                                                            </a>
                                                        </div>
                                                    </div>
                                                </div>
                                            </form>
                                        </div>
                                    </div>
                                </div>
                            </div>
                        </div>
                    </div>
                </div>
            </div>
        </div>
        <script src="https://app.bulk.ly/js/app.js">
        </script>
        <script src="https://js.stripe.com/v2/" type="text/javascript">
        </script>
        <script type="text/javascript">
            Stripe.setPublishableKey('pk_live_ZZJWBtpslfMmWJ2wxfzA4KrH005INuyXB1');
            $(function() {
                var $form = $('#payment-form');
                $form.find('.submit').click(function(event) {
                    $form.find('.submit').prop('disabled', true);
                    Stripe.card.createToken($form, stripeResponseHandler);
                    return false;
                });
                function stripeResponseHandler(status, response) {
                    var $form = $('#payment-form');
                    if (response.error) {
                        console.log(response.error.message);
                        $form.find('.payment-errors').text(response.error.message).show();
                        $form.find('.submit').prop('disabled', false);
                    } else {
                        var token = response.id;
                        console.log(token);
                        $form.append($('<input type="hidden" name="stripeToken">').val(token));
                        $form.find('.payment-errors').text('Your payment was successful. We\'re redirecting you back to your Bulkly account...').show().removeClass('alert-danger').addClass('alert-success');
                        setTimeout(function() {
                            $form.get(0).submit();
                        }, 5000);
                    }
                }
                ;
                $('input[name=period]').change(function() {
                    var period = $(this).val();
                    $('.levels').hide();
                    $('.levels.' + period).show();
                });
                $('input[name=level]').change(function() {
                    $('input[name=level]').parent().removeClass('active focus');
                    $(this).parent().addClass('active focus');
                });
                var getUrlParameter = function getUrlParameter(sParam) {
                    var sPageURL = decodeURIComponent(window.location.search.substring(1)), sURLVariables = sPageURL.split('&'), sParameterName, i;
                    for (i = 0; i < sURLVariables.length; i++) {
                        sParameterName = sURLVariables[i].split('=');
                        if (sParameterName[0] === sParam) {
                            return sParameterName[1] === undefined ? true : sParameterName[1];
                        }
                    }
                };
                var plan = getUrlParameter('plan');
                function setCookie(cname, cvalue, exdays) {
                    var d = new Date();
                    d.setTime(d.getTime() + (exdays * 24 * 60 * 60 * 1000));
                    var expires = "expires=" + d.toUTCString();
                    document.cookie = cname + "=" + cvalue + ";" + expires + ";path=/";
                }
                if (plan) {
                    setCookie('plan', plan, 7);
                }
                function getCookie(cname) {
                    var name = cname + "=";
                    var ca = document.cookie.split(';');
                    for (var i = 0; i < ca.length; i++) {
                        var c = ca[i];
                        while (c.charAt(0) == ' ') {
                            c = c.substring(1);
                        }
                        if (c.indexOf(name) == 0) {
                            return c.substring(name.length, c.length);
                        }
                    }
                    return "";
                }
                var getPlan = getCookie('plan');
                console.log(getPlan);
                if (getPlan == 'agencyyear' || getPlan == 'proplusyear' || getPlan == 'proyear') {
                    $('input[name=period][value=yearly]').parent().click();
                    $('input[name=period][value=yearly]').prop('checked', true);
                }
                if (getPlan == 'agencymonth' || getPlan == 'proplusmonth' || getPlan == 'promonth') {
                    $('input[name=period][value=monthly]').parent().click();
                    $('input[name=period][value=monthly]').prop('checked', true);
                }
                $('input[data-value="' + getPlan + '"]').parent().click();
                $('input[data-value="' + getPlan + '"]').prop('checked', true);
            });
        </script>
    </body>
</html>

Latest requests

# Url Url Source Date
1 https://app.bulk.ly/login 2024-05-18 13:22:02
2 https://thebolditalic.com/?gi=66df… 2024-05-18 13:22:01
3 https://thebolditalic.com/?gi=a33a… 2024-05-18 13:22:01
4 https://thebolditalic.com/?gi=6f7e… 2024-05-18 13:22:00
5 https://thebolditalic.com/?gi=17d4… 2024-05-18 13:21:59
6 https://thebolditalic.com/?gi=404b… 2024-05-18 13:21:59
7 https://thebolditalic.com/?gi=1e94… 2024-05-18 13:21:58
8 https://thebolditalic.com/?gi=e768… 2024-05-18 13:21:57
9 https://thebolditalic.com/?gi=1772… 2024-05-18 13:21:57
10 https://thebolditalic.com/?gi=6b56… 2024-05-18 13:21:56
11 https://thebolditalic.com/?gi=271a… 2024-05-18 13:21:55
12 https://thebolditalic.com/?gi=0e38… 2024-05-18 13:21:53
13 https://thebolditalic.com/?gi=ba1f… 2024-05-18 13:21:53
14 https://thebolditalic.com/?gi=3be5… 2024-05-18 13:21:53
15 https://thebolditalic.com/?gi=415c… 2024-05-18 13:21:52
16 https://thebolditalic.com/?gi=da58… 2024-05-18 13:21:51
17 https://thebolditalic.com/?gi=774f… 2024-05-18 13:21:50
18 https://thebolditalic.com/?gi=3d02… 2024-05-18 13:21:49
19 https://thebolditalic.com/?gi=132b… 2024-05-18 13:21:49
20 https://thebolditalic.com/?gi=fa6e… 2024-05-18 13:21:48