Return a message page

Report a typo

You have two /ref and /link addresses and one connect.html page.

Write a program that outputs connect.html when you access /ref and /link.

Write a program in Python 3
from flask import Flask, render_template

app = Flask('main')
app.app_context()

@app.route()
@app.route()
# your code
___

Create a free account to access the full topic