build0007

This commit is contained in:
Hell13Cat
2021-12-29 00:42:30 +03:00
parent ad3db6afcf
commit 05b5b6c660
3 changed files with 39 additions and 1 deletions
+4
View File
@@ -8,6 +8,10 @@ app = Flask(__name__)
@app.route('/')
def hello():
return render_template('index.html')
@app.route('/add_page')
def add_page():
return render_template('add_page.html')
@app.route('/statics/<string:file_name>')
def statics(file_name):