Skip to content
Snippets Groups Projects
Commit 93f73e17 authored by Nils G.'s avatar Nils G.
Browse files

Convert input in login form to uppercase

parent 77a26709
No related branches found
No related tags found
No related merge requests found
......@@ -18,6 +18,9 @@ def create():
if (len(room_code) != 4) or (len(user_name) == 0) or (len(user_name) > 15):
return(FAIL(CODE_SEMANTIC))
room_code = room_code.upper()
user_name = user_name.upper()
room_record = ROOM_GET_CODE(room_code)
if not room_record:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment