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 username field #27

Closed akshayitzme closed 1 year ago

akshayitzme commented 1 year ago

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

Refer: Working with forms - Django

Example:

class SignUpForm(UserCreationForm):
    username = forms.CharField(
        max_length=100,
        required=True,
        widget=forms.TextInput(attrs={
            'class': 'mt-3 input w-75 p-3',
            'placeholder': 'Name'
        }),
    )
...
...
heraldjose10 commented 1 year ago

I would like to take this up. Please assign this to me

akshayitzme commented 1 year ago

I would like to take this up. Please assign this to me

sure :+1: go ahead !

heraldjose10 commented 1 year ago

Completed. Please take a look at PR #34