Question 6
Consider the following Python Flask code.
Which of the following options are true?
URL request: http://127.0.0.1:5000/signin will return output: http://127.0.0.1:5000/login
URL request: http://127.0.0.1:5000/login will return output: http://127.0.0.1:5000/login
URL request: http://127.0.0.1:5000/index will return output: http://127.0.0.1:5000/home
URL request: http://127.0.0.1:5000/home will return output: http://127.0.0.1:5000/home