This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
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