Question 6
Consider the following Flask code snippet:
from flask import Flask, url_for, request, redirectapp = Flask(__name__)
@app.route("/signin/user")def login(): return url_for("login")
@app.route("/")def home(): return redirect(url_for("login"))
app.run(debug=True)Assume the above code is running on server http://127.0.0.1:5000/ . What will be the output on a web browser for the URL: http://127.0.0.1:5000/ ?