Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created October 9, 2019 06:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/3cd37928c7574a7cb26f3bc2bbbc93c7 to your computer and use it in GitHub Desktop.
Save parzibyte/3cd37928c7574a7cb26f3bc2bbbc93c7 to your computer and use it in GitHub Desktop.
"""
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