mirror of
https://github.com/timmypidashev/web.git
synced 2026-04-14 19:13:51 +00:00
8 lines
212 B
Python
8 lines
212 B
Python
from flask import Flask, render_template, request
|
|
|
|
app = Flask(__name__, template_folder = "templates", static_url_path="/static")
|
|
|
|
#home page
|
|
@app.route("/")
|
|
def index():
|
|
return render_template("index.html") |