Update login.php

This commit is contained in:
Jesse James Isler 2022-04-04 13:21:28 +02:00
parent 6bc7901b4e
commit 561850c399
1 changed files with 3 additions and 2 deletions

View File

@ -1,6 +1,7 @@
<?php
$user = $_POST['user'];
$pass = $_POST['pass'];
$user = @$_POST['user'];
$pass = @$_POST['pass'];
if($user == "admin"
&& $pass == "soup")