fix: 系统用户账号简单4位长度,密码简单6位

This commit is contained in:
TsMask
2025-08-05 17:39:26 +08:00
parent 96b15d4cf2
commit cc2c18e75d
6 changed files with 50 additions and 5 deletions

View File

@@ -19,7 +19,7 @@ func ValidUsername(username string) bool {
if username == "" {
return false
}
pattern := `^[a-zA-Z][a-z0-9A-Z]{5,}`
pattern := `^.{4,}$` //`^[a-zA-Z][a-z0-9A-Z]{5,}`
match, err := regexp.MatchString(pattern, username)
if err != nil {
return false