Linh Vuu commited on
Commit
d153351
1 Parent(s): 6287a31

add run-out-energy message

Browse files
Files changed (1) hide show
  1. app.py +4 -0
app.py CHANGED
@@ -26,6 +26,10 @@ st.session_state['username'] = ""
26
 
27
  def main():
28
  """Banking Advanced Authentication System"""
 
 
 
 
29
 
30
  menu = ["Home", "SignUp", "Login"]
31
  choice = st.sidebar.selectbox("Menu", menu)
 
26
 
27
  def main():
28
  """Banking Advanced Authentication System"""
29
+
30
+ # Note that API key's running out of budget
31
+ contact_url = "https://www.linkedin.com/in/linhvuu"
32
+ st.write("I am running out of energy. Please contact [my assistant](%s) to wake me up." % contact_url)
33
 
34
  menu = ["Home", "SignUp", "Login"]
35
  choice = st.sidebar.selectbox("Menu", menu)