add template files and compose file, fix syntax errors in template

This commit is contained in:
boris
2024-11-07 13:10:06 +00:00
parent 9689e155a2
commit f9d57038bf
41 changed files with 8649 additions and 0 deletions

33
logincontroller.php Normal file
View File

@@ -0,0 +1,33 @@
<?php
session_start();
var_dump($_SESSION);
if (isset($_POST["loginbutton"])) {
$username = $_POST["username"];
$password = $_POST["password"];
echo $username;
echo $password;
if ($username == "a" && $password == "b") {
// better would be to check these variables against your database
// SELECT * FROM usertable WHERE username=$username AND password=$password
// if number of rows returned > 0 then the username and password matched
echo "You are logged in";
$_SESSION["login"] = $username;
}
else
{
echo "Error in username and password";
}
}
if (isset($_POST["logoutbutton"]))
{
echo "logout user";
unset($_SESSION["login"]);
session_destroy();
}