Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created October 9, 2019 06:16
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/dcf578707fe642b034413a7ce331577f to your computer and use it in GitHub Desktop.
Save parzibyte/dcf578707fe642b034413a7ce331577f to your computer and use it in GitHub Desktop.
@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)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment