Skip to content

Commit

Permalink
First Commit
Browse files Browse the repository at this point in the history
  • Loading branch information
HSCorp99906 committed Dec 9, 2021
0 parents commit 8d68921
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 0 deletions.
13 changes: 13 additions & 0 deletions web/src/main.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
from flask import Flask, render_template


app = Flask(__name__)


@app.route('/', methods=['GET', 'POST'])
def index():
return render_template("index.html")


if __name__ == '__main__':
app.run(debug=True)
10 changes: 10 additions & 0 deletions web/src/templates/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<!DOCTYPE html>

<head>
<title>Work In Progress</title>
</head>


<body>
<h1>Work in progress.</h1>
</body>

0 comments on commit 8d68921

Please sign in to comment.