added gross hack

This commit is contained in:
Lynne Megido 2018-11-14 01:27:14 +10:00
parent 068306944c
commit 0dd8efccff
Signed by: lynnesbian
GPG Key ID: FB7B970303ACE499

4
web.py
View File

@ -190,6 +190,7 @@ def do_login():
def create_password():
db, c, dc = db_reconnect()
c.execute("SELECT COUNT(*) FROM data WHERE username = %s AND instance = %s", (session['username'], session['instance']))
try: #TODO: this is a disgusting hack, REMOVE IT
if c.fetchone()[0] == 0:
db.close()
return render_template("create_password.html", bg = "background-image:url('{}')".format(session['avi']))
@ -197,6 +198,9 @@ def create_password():
#user already exists in database, so they already have a password
db.close()
return redirect(url_for('main'))
except:
db.close()
return render_template("create_password.html", bg = "background-image:url('{}')".format(session['avi']))
@app.route('/internal/create_account', methods=['POST'])
def create_account():