Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created October 9, 2019 06:15
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
"""
Formularios con Flask
https://parzibyte.me/blog
"""
from flask import Flask, render_template, request
app = Flask(__name__)
@app.route('/')
def inicio():
return render_template("formulario.html")
@app.route('/procesar', methods=['POST'])
def procesar():
nombre = request.form.get("nombre")
edad = request.form.get("edad")
return render_template("mostrar.html", nombre=nombre, edad=edad)
if __name__ == "__main__":
app.run(host='0.0.0.0', port=8000, debug=True)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment