fix index bug

This commit is contained in:
KF7EEL 2021-05-16 17:10:20 -07:00
parent ed31308b26
commit aa9e68ae5a
1 changed files with 2 additions and 2 deletions

View File

@ -194,9 +194,9 @@ def create_app():
# The Home page is accessible to anyone
@app.route('/')
def home_page():
#content = Markup('<strong>The HTML String</strong>')
#content = Markup('<strong>Index</strong>')
return render_template('index.html', markup_content = content)
return render_template('index.html') #, markup_content = content)
@app.route('/generate_passphrase/pi-star', methods = ['GET'])
@login_required