mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-23 19:37:23 +08:00
Challenge-Response Authentication
This commit is contained in:
@@ -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.",
|
||||
];
|
||||
@@ -0,0 +1,8 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'passwords_unmatched' => "两次输入的密码不一致!请重试。",
|
||||
'password_too_short' => "对不起,密码过短(至少6个字符)",
|
||||
'password_too_long' => "对不起,密码过长(至多40个字符)",
|
||||
'password_equals_username' => "对不起,用户名和密码不能相同。",
|
||||
];
|
||||
@@ -0,0 +1,8 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'passwords_unmatched' => "兩次輸入的密碼不壹致!請重試。",
|
||||
'password_too_short' => "對不起,密碼過短(至少6個字符)",
|
||||
'password_too_long' => "對不起,密碼過長(至多40個字符)",
|
||||
'password_equals_username' => "對不起,用戶名和密碼不能相同。",
|
||||
];
|
||||
Reference in New Issue
Block a user