aboutsummaryrefslogtreecommitdiff
path: root/app/main/forms.py
blob: af9c4c43bc2df69e5e98e70db5e2ba6f0bb7ca53 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# -*- coding: utf-8 -*-

# Author: G.J.J. van den Burg <gvandenburg@turing.ac.uk>
# License: See LICENSE file
# Copyright: 2020 (c) The Alan Turing Institute

from flask_wtf import FlaskForm

from wtforms import SubmitField

class NextForm(FlaskForm):
    submit = SubmitField("Continue")