This commit is contained in:
2024-06-14 16:58:36 +02:00
parent 235c37f17f
commit 252fe7ce44
19 changed files with 1864 additions and 1668 deletions

View File

@@ -1,6 +1,6 @@
<?php
require 'connect.inc.php';
require 'core.inc.php';
require_once 'core.inc.php';
if (isset($_POST['email']) && isset($_POST['password'])) {
$email = $_POST['email'];
@@ -20,7 +20,7 @@ if (isset($_POST['email']) && isset($_POST['password'])) {
$user_id = $row['id'];
$_SESSION['user_id'] = $user_id;
header('Location: ../index.html');
header('Location: index_loged.php');
}
} else {
}