Challenge-Response Authentication

This commit is contained in:
xiaomlove
2025-04-05 15:38:40 +07:00
parent bd9b4d7e1d
commit 97dc956c20
28 changed files with 538 additions and 329 deletions
+8
View File
@@ -0,0 +1,8 @@
<?php
return [
'passwords_unmatched' => "The passwords didn't match! Must've typoed. Try again.",
'password_too_short' => "Sorry, password is too short (min is 6 chars)",
'password_too_long' => "Sorry, password is too long (max is 40 chars)",
'password_equals_username' => "Sorry, password cannot be same as user name.",
];