From b4fbfbf192149fd24b116d4b9c10e5c6afdfcf7c Mon Sep 17 00:00:00 2001 From: Rahul Kumar Agrawal <68812899+rahulagrawal01@users.noreply.github.com> Date: Thu, 1 Oct 2020 11:30:16 +0530 Subject: [PATCH] Update forms.py --- ribbit_app/forms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ribbit_app/forms.py b/ribbit_app/forms.py index e324480..f0d789f 100644 --- a/ribbit_app/forms.py +++ b/ribbit_app/forms.py @@ -3,7 +3,7 @@ from django import forms from django.utils.html import strip_tags from ribbit_app.models import Ribbit - +# here we add all the modules class UserCreateForm(UserCreationForm): email = forms.EmailField(required=True, widget=forms.widgets.TextInput(attrs={'placeholder': 'Email'}))