Untitled

 avatar
unknown
python
2 years ago
189 B
13
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