Update app.py
Browse files
app.py
CHANGED
|
@@ -41,6 +41,13 @@ if page == "Home":
|
|
| 41 |
with right:
|
| 42 |
with st.popover("Verification Entity"):
|
| 43 |
st.write("Enter your access code to proceed.")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 44 |
|
| 45 |
|
| 46 |
|
|
@@ -52,13 +59,3 @@ elif page == "About":
|
|
| 52 |
elif page == "Guidelines & Standarts used":
|
| 53 |
st.title("Guidelines & Standarts used")
|
| 54 |
st.write("The projects relies on the publicly available data provided by Verra. Verra is")
|
| 55 |
-
|
| 56 |
-
|
| 57 |
-
|
| 58 |
-
|
| 59 |
-
if 'page_redirect' in st.session_state and st.session_state.page_redirect == "developer":
|
| 60 |
-
st.title("Project Developer Portal")
|
| 61 |
-
st.write("You can submit your project for evaluation here.")
|
| 62 |
-
# Import and run developer's page
|
| 63 |
-
import developer
|
| 64 |
-
developer.project_developer_page()
|
|
|
|
| 41 |
with right:
|
| 42 |
with st.popover("Verification Entity"):
|
| 43 |
st.write("Enter your access code to proceed.")
|
| 44 |
+
|
| 45 |
+
if 'page_redirect' in st.session_state and st.session_state.page_redirect == "developer":
|
| 46 |
+
st.title("Project Developer Portal")
|
| 47 |
+
st.write("You can submit your project for evaluation here.")
|
| 48 |
+
# Import and run developer's page
|
| 49 |
+
import developer
|
| 50 |
+
developer.project_developer_page()
|
| 51 |
|
| 52 |
|
| 53 |
|
|
|
|
| 59 |
elif page == "Guidelines & Standarts used":
|
| 60 |
st.title("Guidelines & Standarts used")
|
| 61 |
st.write("The projects relies on the publicly available data provided by Verra. Verra is")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|