Skip to content

Instantly share code, notes, and snippets.

@manuel14
Last active January 1, 2016 18:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save manuel14/8187111 to your computer and use it in GitHub Desktop.
Save manuel14/8187111 to your computer and use it in GitHub Desktop.
@csrf_exempt
def comprobar(request):
usuario = request.POST["user"]
password = request.POST["pass"]
user = authenticate(username=usuario, password= password)
if user is not None:
return HttpResponse(simplejson.dumps(True))
else:
return HttpResponse(simplejson.dumps(False))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment