This commit is contained in:
2020-03-13 20:44:22 +03:00
commit 747d24152b
50 changed files with 1314 additions and 0 deletions

17
__init__.py Normal file
View File

@@ -0,0 +1,17 @@
from flask import Flask, render_template
app = Flask(__name__, static_folder="static", template_folder="templates")
@app.route('/', methods=['GET'])
def index():
return render_template('index.html')
@app.route('/login', methods=['GET'])
def login():
return render_template('login.html')
if __name__ == "__main__":
app.run()