Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
AldrinCode authored Aug 15, 2023
1 parent 764c8a4 commit 4893f49
Show file tree
Hide file tree
Showing 3 changed files with 2,208 additions and 0 deletions.
10 changes: 10 additions & 0 deletions app.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
from flask import Flask, render_template

app = Flask(__name__)

@app.route('/')
def index():
return render_template('index.html')

if __name__ == '__main__':
app.run()
Binary file added templates/favicon.ico
Binary file not shown.
Loading

0 comments on commit 4893f49

Please sign in to comment.