Sfoglia il codice sorgente

Merge pull request #150 from willstott101/patch-1

Allow dots in usernames
pull/153/head
Ji Qu 5 anni fa
committed by GitHub
parent
commit
51c2050c77
Non sono state trovate chiavi note per questa firma nel database ID Chiave GPG: 4AEE18F83AFDEB23
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. +1
    -1
      users/forms.py

+ 1
- 1
users/forms.py Vedi File

@@ -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"),


Caricamento…
Annulla
Salva