unchanged commit

parent a9dd3a5e
......@@ -91,7 +91,6 @@ def postsignUp(request):
name = request.POST.get('name'),
email = request.POST.get('email')
password = request.POST.get('password')
district = request.POST.get('district')
user = authe.create_user_with_email_and_password(email, password)
......@@ -102,7 +101,7 @@ def postsignUp(request):
data = {"name": name, "email": email, "password": password, "district": district}
data = {"name": name, "email": email, "password": password}
database.child("users").child(uid).child("details").set(data)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment