import streamlit as st from databaseengine import DatabaseEngine import streamlit_authenticator as stauth import yaml from yaml.loader import SafeLoader de=DatabaseEngine() ''' def authenticate_user(username,password): data={ "username":username, "password":password } auth=de.Login(data) #if username in hardcodedlogin_user["usernames"] and password in hardcodedlogin_user["passwords"]: if auth==True: return True else: return False ''' def LOGIN(): with st.container(border=True):