Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -9,6 +9,7 @@ import xlsxwriter
|
|
| 9 |
from flask_httpauth import HTTPBasicAuth
|
| 10 |
|
| 11 |
app = Flask(__name__, template_folder='templates')
|
|
|
|
| 12 |
|
| 13 |
auth = HTTPBasicAuth()
|
| 14 |
|
|
|
|
| 9 |
from flask_httpauth import HTTPBasicAuth
|
| 10 |
|
| 11 |
app = Flask(__name__, template_folder='templates')
|
| 12 |
+
app.config['WTF_CSRF_ENABLED'] = False # Disable CSRF for testing
|
| 13 |
|
| 14 |
auth = HTTPBasicAuth()
|
| 15 |
|