From 79ff2ce7b1b1a2100454d1a9ca749d9d74b0a5b5 Mon Sep 17 00:00:00 2001
From: arnaud <a.stoz@cylab.be>
Date: Thu, 7 Mar 2024 19:28:10 +0100
Subject: [PATCH] change to have trinity as a password

---
 public/index.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/public/index.php b/public/index.php
index c003fec..fc0d338 100644
--- a/public/index.php
+++ b/public/index.php
@@ -17,7 +17,7 @@ if ($_SERVER['REQUEST_METHOD'] === 'POST') {
 	$username = $_POST['email'];
 	$password = $_POST['password'];
 	
-	$valid_user = ($username == env("LOGIN", "smith@matrix.org") && $password == env("PASSWORD", "mickey"));
+	$valid_user = ($username == env("LOGIN", "smith@matrix.org") && $password == env("PASSWORD", "trinity"));
 	$failed_login = ! $valid_user;
 }
 ?>
-- 
GitLab