Roughly setup html and some basic javascript. I'm probably going to redo most of this though.

This commit is contained in:
dan
2022-01-19 23:37:03 -05:00
parent f635ca6958
commit fa58df3f43
7 changed files with 96 additions and 3 deletions

6
app.py
View File

@@ -1,11 +1,11 @@
from flask import Flask
from flask import Flask, render_template
app = Flask(__name__)
@app.route('/')
def hello_world():
return 'Hello World!'
def index():
return render_template("index.html")
if __name__ == '__main__':