Question 15
Consider the following flask application.
app.py
from flask import Flask, abort, requestapp = Flask(__name__)
@app.route('/login/<id>')def login(id): if id: if id.isalpha(): abort(400, "Bad Request: Invalid ID") return f'<h1>Your ID is: {id}</h1>' return f'<h1>Invalid ID</h1>'
app.run(debug=True)Which of the following statements is/are true if the application is running locally on http://127.0.0.1:5000 ?