I'm making a python code and using flask to make a webpage.I need to take input from this html page into python and after processing sending back to html page.How I can do so ?
`Blockquote from flask import Flask, render_template
app = Flask(__name__)
@app.route('/')
def home():
return render_template("login.html")
@app.route('/about/')
def about():
return ('you wil get all sort of shayari here')
if __name__ == "__main__":
app.run()
'