diff --git a/pagure/forms.py b/pagure/forms.py index 52619e7..8a863b6 100644 --- a/pagure/forms.py +++ b/pagure/forms.py @@ -173,3 +173,10 @@ class UploadFileForm(wtf.Form): filestream = wtforms.FileField( 'File', [wtforms.validators.Required()]) + + +class UserEmailForm(wtf.Form): + ''' Form to edit the description of a project. ''' + email = wtforms.TextField( + 'email', [wtforms.validators.Required()] + )