From 085e777ee0c15bc2f414c6cf0d1eba9acfd3f957 Mon Sep 17 00:00:00 2001 From: Tmaxxrox97 Date: Thu, 29 Oct 2020 09:52:05 -0500 Subject: [PATCH] Changed Username field label from "Name" to "Username" --- cookbook/forms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cookbook/forms.py b/cookbook/forms.py index a4301eb0a..a53b5a5dc 100644 --- a/cookbook/forms.py +++ b/cookbook/forms.py @@ -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'}))