mirror of
https://github.com/pi-hole/web.git
synced 2026-02-22 10:45:22 +00:00
Currently allows anything for the password. This will be updated when I implment passwords on the main repo.
10 lines
162 B
PHP
10 lines
162 B
PHP
<?php
|
|
if(!isset($_GET['pass']))
|
|
die("No password entered");
|
|
|
|
include "functions.php";
|
|
|
|
if(checkPass($_GET['pass']))
|
|
echo "Correct";
|
|
else
|
|
echo "Wrong"; |