add password protection

This commit is contained in:
2021-05-19 09:17:41 +02:00
parent ea44d38a0d
commit 934c4877b2
7 changed files with 20 additions and 2 deletions

View File

@@ -1,5 +1,8 @@
from autoreply_editor import app
from flask import Flask, request, render_template, redirect
from flask_basicauth import BasicAuth
basic_auth = BasicAuth(app)
@app.route("/")
def index():