Ejemplo 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
Ejemplo 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
Ejemplo 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
Ejemplo 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