Update app.py
Browse files
app.py
CHANGED
|
@@ -7,18 +7,15 @@ page = st.sidebar.radio("Go to", ["Home", "Project Developer", "Verification Bod
|
|
| 7 |
if page == "Home":
|
| 8 |
st.title("Hi! Welcome to the NBS Project Submission Platform")
|
| 9 |
st.write("Please use the sidebar to navigate between options.")
|
|
|
|
|
|
|
| 10 |
|
| 11 |
-
#
|
| 12 |
-
elif page == "
|
| 13 |
-
st.title("
|
| 14 |
-
st.write("
|
| 15 |
|
| 16 |
-
# This will import and run the code from project_developer.py
|
| 17 |
-
# Importing streamlit_app functions here or you can move all the code into this block
|
| 18 |
-
import developer
|
| 19 |
-
developer.run()
|
| 20 |
|
| 21 |
-
|
| 22 |
-
|
| 23 |
-
st.
|
| 24 |
-
st.write("This section is for verification officers.")
|
|
|
|
| 7 |
if page == "Home":
|
| 8 |
st.title("Hi! Welcome to the NBS Project Submission Platform")
|
| 9 |
st.write("Please use the sidebar to navigate between options.")
|
| 10 |
+
st.button("Project Developer", key=None, help=None, on_click=None, args=None, kwargs=None, *, type="secondary", icon=None, disabled=False, use_container_width=False)
|
| 11 |
+
st.button("Verification entity", key=None, help=None, on_click=None, args=None, kwargs=None, *, type="secondary", icon=None, disabled=False, use_container_width=False)
|
| 12 |
|
| 13 |
+
# about age
|
| 14 |
+
elif page == "About":
|
| 15 |
+
st.title("About us")
|
| 16 |
+
st.write("The project aims to...")
|
| 17 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 18 |
|
| 19 |
+
elif page == "Guidelines & Standarts used":
|
| 20 |
+
st.title("Guidelines & Standarts used")
|
| 21 |
+
st.write("The projects relies on the publicly available data provided by Verra. Verra is")
|
|
|