fix: Lowercase domain for signup
All checks were successful
Build Docker / Build SLDs Image (push) Successful in 16s
Build Docker / Build Main Image (push) Successful in 17s

This commit is contained in:
Nathan Woodburn 2023-11-17 10:43:46 +11:00
parent cb055cc13e
commit 4a0f17f1c8
Signed by: nathanwoodburn
GPG Key ID: 203B000478AD0EF1

View File

@ -62,7 +62,7 @@ def index():
@app.route('/signup', methods=['POST'])
def signup():
email = request.form['email']
domain = request.form['domain']
domain = request.form['domain'].lower()
password = request.form['password']
# Verify domain