def login(): """ Gets JSON to see if user is able to log in """ screenname = request.form.get("screenname") password = request.form.get("password") if is_signed_in(screenname, password) == "True": session["screenname"] = screenname session["password"] = password flash("You have successfully logged in") return is_signed_in(screenname, password)
def create_a_new_user(): """JSON - gets new user information and sends to OKC""" orientation = request.form.get("orientation") gender = request.form.get("gender") birthmonth = request.form.get("birthmonth") birthdate = request.form.get("birthdate") birthyear = request.form.get("birthyear") zipcode = request.form.get("zip") email = request.form.get("email") screenname = request.form.get("screenname") password = request.form.get("password") results = create_new_user(orientation, gender, birthmonth, birthdate, birthyear, zipcode, email, screenname, password) if results == "success": if is_signed_in(screenname, password) == "True": session["screenname"] = screenname session["password"] = password flash("You have successfully created a new user") return results