Untitled

mail@pastecode.io avatar
unknown
plain_text
2 years ago
342 B
1
Indexable
Never
from flask import Flask, render_template

app = Flask(__name__)

@app.route('/')
def index():
    product_name = "Cool Product"
    product_description = "This product is amazing and will change your life!"
    return render_template('index.html', name=product_name, description=product_description)

if __name__ == '__main__':
    app.run()