Untitled

Anonymous
python
04/05/2024 3:33 AM
252 B
22
Indexable
from flask import Blueprint, render_template

views = Blueprint(__name__, "views")

@views.route("/")
def home():
    return render_template("index.html", username="aperture", email="6901")
Editor is loading...
Leave a Comment