├── .gitattributes ├── js ├── .DS_Store ├── app.min.js └── plugins.min.js ├── preview.png ├── css ├── .DS_Store └── app.min.css ├── fonts ├── .DS_Store ├── aller │ ├── .DS_Store │ ├── aller_bold.eot │ ├── aller_bold.ttf │ ├── aller_bold.woff │ ├── aller_light.eot │ ├── aller_light.ttf │ ├── aller_bold.woff2 │ ├── aller_light.woff │ ├── aller_light.woff2 │ ├── aller_regular.eot │ ├── aller_regular.ttf │ ├── aller_regular.woff │ ├── aller_regular.woff2 │ ├── aller_bold.svg │ └── aller_light.svg └── billabong │ ├── .DS_Store │ ├── billabong.eot │ ├── billabong.ttf │ ├── billabong.woff │ └── billabong.woff2 ├── img ├── .DS_Store ├── favicon.png └── insta.svg ├── README.md └── index.html /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto -------------------------------------------------------------------------------- /js/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpa-landing-pages/instagram-followers-hack/HEAD/js/.DS_Store -------------------------------------------------------------------------------- /preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpa-landing-pages/instagram-followers-hack/HEAD/preview.png -------------------------------------------------------------------------------- /css/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpa-landing-pages/instagram-followers-hack/HEAD/css/.DS_Store -------------------------------------------------------------------------------- /fonts/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpa-landing-pages/instagram-followers-hack/HEAD/fonts/.DS_Store -------------------------------------------------------------------------------- /img/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpa-landing-pages/instagram-followers-hack/HEAD/img/.DS_Store -------------------------------------------------------------------------------- /img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpa-landing-pages/instagram-followers-hack/HEAD/img/favicon.png -------------------------------------------------------------------------------- /fonts/aller/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpa-landing-pages/instagram-followers-hack/HEAD/fonts/aller/.DS_Store -------------------------------------------------------------------------------- /fonts/billabong/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpa-landing-pages/instagram-followers-hack/HEAD/fonts/billabong/.DS_Store -------------------------------------------------------------------------------- /fonts/aller/aller_bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpa-landing-pages/instagram-followers-hack/HEAD/fonts/aller/aller_bold.eot -------------------------------------------------------------------------------- /fonts/aller/aller_bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpa-landing-pages/instagram-followers-hack/HEAD/fonts/aller/aller_bold.ttf -------------------------------------------------------------------------------- /fonts/aller/aller_bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpa-landing-pages/instagram-followers-hack/HEAD/fonts/aller/aller_bold.woff -------------------------------------------------------------------------------- /fonts/aller/aller_light.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpa-landing-pages/instagram-followers-hack/HEAD/fonts/aller/aller_light.eot -------------------------------------------------------------------------------- /fonts/aller/aller_light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpa-landing-pages/instagram-followers-hack/HEAD/fonts/aller/aller_light.ttf -------------------------------------------------------------------------------- /fonts/aller/aller_bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpa-landing-pages/instagram-followers-hack/HEAD/fonts/aller/aller_bold.woff2 -------------------------------------------------------------------------------- /fonts/aller/aller_light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpa-landing-pages/instagram-followers-hack/HEAD/fonts/aller/aller_light.woff -------------------------------------------------------------------------------- /fonts/aller/aller_light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpa-landing-pages/instagram-followers-hack/HEAD/fonts/aller/aller_light.woff2 -------------------------------------------------------------------------------- /fonts/aller/aller_regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpa-landing-pages/instagram-followers-hack/HEAD/fonts/aller/aller_regular.eot -------------------------------------------------------------------------------- /fonts/aller/aller_regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpa-landing-pages/instagram-followers-hack/HEAD/fonts/aller/aller_regular.ttf -------------------------------------------------------------------------------- /fonts/aller/aller_regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpa-landing-pages/instagram-followers-hack/HEAD/fonts/aller/aller_regular.woff -------------------------------------------------------------------------------- /fonts/billabong/billabong.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpa-landing-pages/instagram-followers-hack/HEAD/fonts/billabong/billabong.eot -------------------------------------------------------------------------------- /fonts/billabong/billabong.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpa-landing-pages/instagram-followers-hack/HEAD/fonts/billabong/billabong.ttf -------------------------------------------------------------------------------- /fonts/billabong/billabong.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpa-landing-pages/instagram-followers-hack/HEAD/fonts/billabong/billabong.woff -------------------------------------------------------------------------------- /fonts/aller/aller_regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpa-landing-pages/instagram-followers-hack/HEAD/fonts/aller/aller_regular.woff2 -------------------------------------------------------------------------------- /fonts/billabong/billabong.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpa-landing-pages/instagram-followers-hack/HEAD/fonts/billabong/billabong.woff2 -------------------------------------------------------------------------------- /img/insta.svg: -------------------------------------------------------------------------------- 1 | 12 | -------------------------------------------------------------------------------- /js/app.min.js: -------------------------------------------------------------------------------- 1 | $(function(){function e(e){var r=$(e);r.parent().find(".form-amount-value").text(r.val())}function r(e,r){"show"===r?$(e).modal({show:!0,keyboard:!1,backdrop:"static"}):"hide"===r&&$(e).modal("hide")}$.validator.setDefaults({errorElement:"span",errorClass:"form-error",highlight:function(e,r,o){$(e).closest(".form-group").addClass("has-error")},unhighlight:function(e,r,o){$(e).closest(".form-group").removeClass("has-error")},errorPlacement:function(e,r){r.parent(".input-group").length||"checkbox"===r.prop("type")||"radio"===r.prop("type")||r.parent(".form-select").length?e.insertAfter(r.parent()):r.hasClass("selectpicker")?e.insertAfter(r.parent().children(".bootstrap-select")):e.insertAfter(r)}});var o=window.App.consoleMessages,t=[],n=$(".form-range"),s=$("#console-messages");n.slider({tooltip:"hide"}).on("slide slideStop",function(r){e(r.currentTarget)}),e(n),$("#form-request").validate({rules:{"form-user":"required"},submitHandler:function(e,n){n.preventDefault();var a={user:$("#form-user").val(),amount:$("#form-amount").val()};t=$.map(o,function(e){return e.indexOf("{user}")>=0&&(e=e.replace("{user}",a.user)),e.indexOf("{amount}")>=0&&(e=e.replace("{amount}",a.amount)),"