diff --git a/progit/forms.py b/progit/forms.py index f0688a7..6dcd900 100644 --- a/progit/forms.py +++ b/progit/forms.py @@ -34,3 +34,11 @@ class IssueForm(wtf.Form): 'Content*', [wtforms.validators.Required()] ) + + +class RequestPullForm(wtf.Form): + ''' Form to create a request pull. ''' + title = wtforms.TextField( + 'Title*', + [wtforms.validators.Required()] + )