diff options
| author | Bobby <[email protected]> | 2023-01-08 12:55:38 -0500 |
|---|---|---|
| committer | Bobby <[email protected]> | 2023-01-08 12:55:38 -0500 |
| commit | 8d270d0da154d8a863401581e742de7a0eb191ed (patch) | |
| tree | c76494aca226a11bd9329bb87fb87abf7eb85cdd /users/forms.py | |
| parent | 732b43800422e2a6d9c2c4d3de9d20be8b628127 (diff) | |
| download | thatcomputerscientist-8d270d0da154d8a863401581e742de7a0eb191ed.tar.xz thatcomputerscientist-8d270d0da154d8a863401581e742de7a0eb191ed.zip | |
Add account actions working
Diffstat (limited to 'users/forms.py')
| -rw-r--r-- | users/forms.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/users/forms.py b/users/forms.py index 5ef95543..8b02fef5 100644 --- a/users/forms.py +++ b/users/forms.py @@ -65,7 +65,6 @@ class RegisterForm(forms.Form): return user - class UpdateUserDetailsForm(forms.Form): first_name = forms.CharField(label='First name', max_length=30, required=False, widget=forms.TextInput(attrs={'placeholder': 'First name'})) last_name = forms.CharField(label='Last name', max_length=30, required=False, widget=forms.TextInput(attrs={'placeholder': 'Last name'})) |
