aboutsummaryrefslogtreecommitdiff
path: root/app/main/forms.py
diff options
context:
space:
mode:
Diffstat (limited to 'app/main/forms.py')
-rw-r--r--app/main/forms.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/app/main/forms.py b/app/main/forms.py
new file mode 100644
index 0000000..dcdffd3
--- /dev/null
+++ b/app/main/forms.py
@@ -0,0 +1,8 @@
+# -*- coding: utf-8 -*-
+
+from flask_wtf import FlaskForm
+
+from wtforms import SubmitField
+
+class NextForm(FlaskForm):
+ submit = SubmitField("Continue")