Kangarroar commited on
Commit
5e9025a
1 Parent(s): 0eb4850

Create Congratulations.py

Browse files
Files changed (1) hide show
  1. Congratulations.py +10 -0
Congratulations.py ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ import streamlit as st
2
+
3
+ def main():
4
+ st.set_page_config(page_title="Congratulations!", page_icon=":confetti_ball:", layout="wide")
5
+ st.title("Congratulations!")
6
+ st.write("You have successfully completed the terms of service agreement!")
7
+ st.write("You may now access the rest of the platform.")
8
+
9
+ if __name__ == "__main__":
10
+ main()