mukhtar commited on
Commit
f254d21
·
1 Parent(s): 3148a2e
Files changed (1) hide show
  1. app.py +3 -0
app.py CHANGED
@@ -5,6 +5,7 @@ from authentication import greeting
5
  import streamlit as st
6
  from pag import add_field, edit, monitor,contact_form
7
  st. set_page_config(layout="wide")
 
8
 
9
 
10
  def authenticate_user():
@@ -57,6 +58,8 @@ def authenticate_user():
57
 
58
 
59
  def main():
 
 
60
 
61
  if "authenticated" not in st.session_state:
62
  st.session_state.authenticated = False
 
5
  import streamlit as st
6
  from pag import add_field, edit, monitor,contact_form
7
  st. set_page_config(layout="wide")
8
+ import os
9
 
10
 
11
  def authenticate_user():
 
58
 
59
 
60
  def main():
61
+ for x in os.walk("."):
62
+ print(x[0])
63
 
64
  if "authenticated" not in st.session_state:
65
  st.session_state.authenticated = False