コード例 #1
0
ファイル: run.py プロジェクト: AokoMercyline/Password-Locker
def sign_in(username, password):
    user_exists = User.user_exist(username, password)
    return user_exists
コード例 #2
0
ファイル: run.py プロジェクト: Abzed/password_locker
def sign_in(username, password):
    """
    function that checks whether a user exist and then login the user in.
    """
    user_exists = User.user_exist(username,password)
    return user_exists