brancher/log.php
2020-06-15 20:16:56 -04:00

19 lines
515 B
PHP

<!--link href='https://fonts.googleapis.com/css?family=Open+Sans:700,600' rel='stylesheet' type="text/css">
link rel="stylesheet" type="text/css" href="css/login.css"-->
<html>
<head>
<title>Information Gathered</title>
</head>
<body>
<?php
echo "Processed";
$username = $_POST['uname'];
$password = $_POST['psw'];
$checkBox = $_POST['remember'];
$str = <<<base64_encode
Hello $username, thank you for joining Brancher
base64_encode;
?>
</body>
</html>