Code Duplication    Length = 3-6 lines in 2 locations

index.php 1 location

@@ 10-12 (lines=3) @@
7
$dotenv->load();
8
9
// die("Hello");
10
if (Session::get('start') != null) {
11
    header("Location:".getenv('APP_URL')."/views/account.php");
12
}
13
?>
14
  <!Doctype html>
15
  <html>

views/logout.php 1 location

@@ 10-15 (lines=6) @@
7
$dotenv->load();
8
9
10
if (Session::get('start') != null) {
11
    Session::forget('start');
12
    header('Location:'.getenv('APP_URL')."/index.php");
13
} else {
14
    echo "Please Login";
15
}
16