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 password1 field #32

Closed akshayitzme closed 1 year ago

akshayitzme commented 1 year ago

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

Refer: Working with forms - Django

Example:

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

please assign this issue to me.

ogdhruv commented 1 year ago

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