Changed Username field label from "Name" to "Username"

This commit is contained in:
Tmaxxrox97 2020-10-29 09:52:05 -05:00
parent c31df3f7a6
commit 085e777ee0

View File

@ -285,6 +285,6 @@ class InviteLinkForm(forms.ModelForm):
class UserCreateForm(forms.Form):
name = forms.CharField()
name = forms.CharField(label='Username')
password = forms.CharField(widget=forms.TextInput(attrs={'autocomplete': 'new-password', 'type': 'password'}))
password_confirm = forms.CharField(widget=forms.TextInput(attrs={'autocomplete': 'new-password', 'type': 'password'}))