Solution
class ExampleForm(FlaskForm):
response = HiddenField()
submit = SubmitField()
@app.route('/', methods=['GET', 'POST'])
def index():
form = ExampleForm(request.form)
if form.validate_on_submit():
print(form.response.data)
return render_template('index.html', **locals())