removed the hack, as it doesn't seem to work anyway

This commit is contained in:
Lynne Megido 2018-11-14 01:34:59 +10:00
parent 16d80fcd73
commit 633407ca9d
Signed by: lynnesbian
GPG Key ID: FB7B970303ACE499

16
web.py
View File

@ -192,18 +192,14 @@ 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']))
else:
#user already exists in database, so they already have a password
db.close()
return redirect(url_for('main'))
except:
if c.fetchone()[0] == 0:
db.close()
return render_template("create_password.html", bg = "background-image:url('{}')".format(session['avi']))
else:
#user already exists in database, so they already have a password
db.close()
return redirect(url_for('main'))
@app.route('/internal/create_account', methods=['POST'])
def create_account():
db, c, dc = db_reconnect()