Ejemplo n.º 1
0
def index():
    return flask.render_template(
        "index.html.tpl",
        link = "home",
        form = dict(),
        errors = dict()
    )
Ejemplo n.º 2
0
def index():
    return flask.render_template(
        "index.html.tpl",
        link = "home",
        form = dict(),
        errors = dict()
    )
Ejemplo n.º 3
0
def form_action():
    return flask.render_template(
        "index.html.tpl",
        link = "form",
        form = dict(),
        errors = dict(
            name = ["Invalid name"],
            age = ["Invalid age"]
        )
    )
Ejemplo n.º 4
0
def form_action():
    return flask.render_template(
        "index.html.tpl",
        link = "form",
        form = dict(),
        errors = dict(
            name = ["Invalid name"],
            age = ["Invalid age"]
        )
    )