From 5a98008fa6c9e6e909b9c4d7eff852e24f5219b8 Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Oct 08 2014 14:25:26 +0000 Subject: Add a basic confirmation form that can be used for csrf protection --- diff --git a/progit/forms.py b/progit/forms.py index 1fa5bb9..349a2a6 100644 --- a/progit/forms.py +++ b/progit/forms.py @@ -143,3 +143,6 @@ class DescriptionForm(wtf.Form): 'description *', [wtforms.validators.Required()] ) + +class ConfirmationForm(wtf.Form): + pass