File size: 347 Bytes
5e9025a
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
import streamlit as st

def main():
    st.set_page_config(page_title="Congratulations!", page_icon=":confetti_ball:", layout="wide")
    st.title("Congratulations!")
    st.write("You have successfully completed the terms of service agreement!")
    st.write("You may now access the rest of the platform.")

if __name__ == "__main__":
    main()