diff --git a/pagure/forms.py b/pagure/forms.py index 87715d6..8ea955a 100644 --- a/pagure/forms.py +++ b/pagure/forms.py @@ -203,6 +203,10 @@ class DescriptionForm(wtf.Form): 'description *', [wtforms.validators.Required()] ) + avatar_email = wtforms.TextField( + 'Avatar email', + [wtforms.validators.optional()] + ) class ConfirmationForm(wtf.Form):