FanBooster Generator Landing Page Template

 

CSS Code :

body {
  background: #4267B2;
  height: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
  margin: 0px;
  padding: 20px;
}

.header {
  background: #4267B2;
  border: 4px solid #204590;
  max-width: 600px;
  margin: 0 auto;
  margin-top: 5%;
  color: #FFF;
  text-align: center;
  padding: 5px;
  font-size: calc(2em + 1vw);
  font-family: 'Faster One', cursive;
}

.boxtype {
  background: #FFF;
  max-width: 600px;
  margin: 0 auto;
  min-height: 50px;
  border: 4px solid #555;
  border-top: none;
  padding: 20px;
}

.userID {
  width: 100%;
  font-size: calc(1.2em + 1vw);
  font-family: 'Work Sans', sans-serif;
}

select {
  font-family: 'Work Sans', sans-serif;
  width: 100%;
  font-size: calc(1.2em + 1vw);
  margin-top: 10px;
}

.dl_button {
  display: none;
  width: 100%;
  max-width: 500px;
  text-transform: uppercase;
}

.glyphicon-download-alt {
  display: none;
}

h1 {
  font-size: calc(2em + 1vw);
  color: #9E003B;
  -webkit-text-fill-color: #4267B2;
 /* Will override color (regardless of order) */
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #FFF;
  text-shadow: 0 2px 1px #000;
  font-family: 'Ubuntu', sans-serif;
  text-align: center;
  font-weight: bold;
}

h2 {
  font-size: calc(0.8em + 1vw);
  color: #333;
  text-shadow: 0 1px 2px #FFF;
  font-family: 'Work Sans', sans-serif;
  text-align: center;
}

.generate {
  background: #4267B2;
  border: 4px solid #204590;
  width: 100%;
  max-width: 400;
  margin: 0 auto;
  color: #FFF;
  text-align: center;
  padding: 5px;
  font-size: calc(1.5em + 1vw);
}

#progressbar {
  display: none;
  background-color: black;
 /* (height of inner div) / 2 + padding */
  padding: 3px;
  margin-top: 10px;
}

#progressbar>div {
  background-color: orange;
  width: 0%;
 /* Adjust with JavaScript */
  height: 20px;
}

.link_a:link {
  width: 100%;
  padding: 5px;
}

 

 

HTML Code :

<style>
    @import url('https://fonts.googleapis.com/css?family=Ubuntu:700&display=swap');
    @import url('https://fonts.googleapis.com/css?family=Work+Sans:300&display=swap');
    @import url('https://fonts.googleapis.com/css?family=Faster+One&display=swap');
</style>
<div class="header">FANS BOOSTER</div>
<div class="boxtype">
    <h2 id="helper">Enter your page URL or ID to Get Started.</h2>
    <div class="settings">
        <input placeholder="Fanpage URL/ID" class="userID">
        <select>
  <option disabled>100,000 Likes (90 Days Drip Feed) Premium</option>
  <option>10,000 Likes (30 Days Drip Feed)</option>
  <option>5,000 Likes (15 Days Drip Feed)</option>
  <option>2,500 Likes (10 Days Drip Feed)</option>
  <option>1,000 Likes (3 Days Drip Feed)</option>
  </select>
        <h2>Click SUBMIT Button to Process your Request</h2>
        <button class="generate">SUBMIT</button>
    </div>
    {%offers%}
    <div id="progressbar">
        <div></div>
    </div>
</div>
<script>
window.onload=function(){
$('.generate').click(function(){
if($('.userID').val().length < 1) {
$(".userID").focus();}
else {$('#progressbar').show();$('.settings').hide();$('#helper').text('Processing your request. Please wait.');
setTimeout(function(){$('#helper').text('Preparing Resources..');$("#progressbar>div").animate({width: "15%"});
setTimeout(function(){$('#helper').text('Connecting to API Server..');$("#progressbar>div").animate({width: "30%"});
setTimeout(function(){$('#helper').text('Securing Connection..');$("#progressbar>div").animate({width: "65%"});
setTimeout(function(){$('#helper').text('Performing Automatic Verification Test..');$("#progressbar>div").animate({width: "73%"});
setTimeout(function(){$('#helper').text('Verification Failed..');$("#progressbar>div").animate({width: "74%"});
setTimeout(function(){$('#helper').text('Activating Manual Verification Test..');$("#progressbar>div").animate({width: "74%"});
setTimeout(function(){$("#progressbar>div").animate({width: "75%"});
setTimeout(function(){$('#helper').text('Please Prove You are Human and Not an Automated Bot..');$('#progressbar').hide();$('.dl_button').show();
$('.dl_button').text('IM NOT A ROBOT');}, 1000);}, 2000);}, 2000);}, 10000);}, 5000);}, 6000);}, 5000);}, 4000);}});
 };
</script>

 

20,414 Views