瀏覽代碼

Merge pull request #150 from willstott101/patch-1

Allow dots in usernames
pull/153/head
Ji Qu 5 年之前
committed by GitHub
父節點
當前提交
51c2050c77
沒有發現已知的金鑰在資料庫的簽署中 GPG Key ID: 4AEE18F83AFDEB23
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. +1
    -1
      users/forms.py

+ 1
- 1
users/forms.py 查看文件

@@ -13,7 +13,7 @@ class UserCreationForm(forms.ModelForm):
}
username = forms.RegexField(
label=_("Username"), max_length=30,
regex=r'^[\w-]+$'
regex=r'^[\w\-.]+$'
)
password = forms.CharField(
label=_("Password"),


Loading…
取消
儲存