From f929cb4c3fce9f105ac4d27331c462eaa35db17f Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Mar 26 2015 16:11:28 +0000 Subject: Add a form to add or remove email(s) of an user --- 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()] + )