Esempio n. 1
0
def error_internal(e):

    form = LoginForm()

    if form.validate_on_submit():
        process_login(form)

    return render_template('500.html', form=form), 500
Esempio n. 2
0
def error_internal(e):

    form = LoginForm()

    if form.validate_on_submit():
        process_login(form)

    return render_template('500.html', form=form), 500
Esempio n. 3
0
def page_not_found(e):

    form = LoginForm()

    if form.validate_on_submit():
        process_login(form)

    flash('The page requested could not be found. Here\'s a haiku instead.', 'info')
    return render_template('404.html', form=form), 404
Esempio n. 4
0
def page_not_found(e):

    form = LoginForm()

    if form.validate_on_submit():
        process_login(form)

    flash('The page requested could not be found. Here\'s a haiku instead.',
          'info')
    return render_template('404.html', form=form), 404