added priority

This commit is contained in:
2023-01-18 21:09:06 +01:00
parent 05f11a18cd
commit 4e30e3a439
4 changed files with 92 additions and 11 deletions

4
include/get_pw_hash.php Normal file
View File

@@ -0,0 +1,4 @@
<?php
if(isset($_GET['pass'])) {
echo(password_hash($_GET['pass'], PASSWORD_DEFAULT));
}