Last coommit before refactoring

This commit is contained in:
Danamir
2025-08-04 10:33:21 +03:00
parent 1c33775f92
commit c24a1fa8c6
4 changed files with 11 additions and 22 deletions

7
app.py
View File

@@ -7,12 +7,6 @@ from datetime import *
import csv
import random
from urllib.parse import unquote
from flask_httpauth import HTTPBasicAuth
from werkzeug.security import generate_password_hash, check_password_hash
import xlrd
import xlwt
import xlsxwriter
from xlutils.copy import copy
app = Flask(__name__)
@@ -27,6 +21,7 @@ db.init_app(app)
migrate = Migrate(app, db)
@app.route("/login", methods=['GET', 'POST'])
def login():
return render_template('login.html')