mirror of
https://github.com/Rushilwiz/brancher.git
synced 2025-04-20 20:10:16 -04:00
19 lines
515 B
PHP
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>
|