akshayitzme / cinlist

Developing a Progressive WebApp to list your favorite series and movies.
Apache License 2.0
4 stars 11 forks source link

py: define attributes for the password2 field #33

Closed akshayitzme closed 1 year ago

akshayitzme commented 1 year ago

we have to style the password2 field in the SignUpForm located in forms.py

Refer: Working with forms - Django

Example:

class SignUpForm(UserCreationForm):
  ...
   password2 = forms.CharField(
        required=True,
        widget=forms.PasswordInput(attrs={
            'class': 'mt-3 input w-75 p-3',
            'placeholder': 'Confirm Password'
        }),
    )
  ...
ogdhruv commented 1 year ago

please assign this issue to me

ogdhruv commented 1 year ago

Opened a PR #47 @akshayitzme Please take a look. Let me know if any changes are needed.