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 email field #31

Closed akshayitzme closed 1 year ago

akshayitzme commented 1 year ago

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

Refer: Working with forms - Django

Example:

class SignUpForm(UserCreationForm):
  ...
    email = forms.EmailField(
        max_length=100,
        required=True,
        widget=forms.TextInput(
            attrs={
                'class': 'mt-3 input w-75 p-3',
                'type': 'email',
                'placeholder': 'Email'
            }),
    )
  ...
ogdhruv commented 1 year ago

I would like to work on it, please assign this issue to me.

ogdhruv commented 1 year ago

Aren't #32 and #33 also related to this same issue, I think these all problems should be considered as one.

akshayitzme commented 1 year ago

Aren't #32 and #33 also related to this same issue, I think these all problems should be considered as one.

@ogdhruv Yes you're right. But since this repo is a part of Hacktoberfest event. I'm trying to produce more issues so that more people can contribute to the project.

ogdhruv commented 1 year ago

okay that is understandable, please assign all three to me (#32, #33 also). I am also in hacktoberfest

akshayitzme commented 1 year ago

okay that is understandable, please assign all three to me (#32, #33 also). I am also in hacktoberfest

i can do that but first please send a message in those issues. then only i can assign someone from the conversation.

ogdhruv commented 1 year ago

assign me this issue also

ogdhruv commented 1 year ago

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

ogdhruv commented 1 year ago

if this is resolved please close this issue.