Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -5,6 +5,12 @@ st.set_page_config(layout="wide")
|
|
| 5 |
st.title("🎈 Tyler's Subscription app POC 🎈")
|
| 6 |
st.balloons()
|
| 7 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 8 |
|
| 9 |
st.write("Congrats, you are subscribed!")
|
| 10 |
st.write("the email of the user is " + str(st.session_state.email))
|
|
|
|
| 5 |
st.title("🎈 Tyler's Subscription app POC 🎈")
|
| 6 |
st.balloons()
|
| 7 |
|
| 8 |
+
add_auth(
|
| 9 |
+
required=True,
|
| 10 |
+
login_button_text="Login with Google",
|
| 11 |
+
login_button_color="#FD504D",
|
| 12 |
+
login_sidebar=True,
|
| 13 |
+
)
|
| 14 |
|
| 15 |
st.write("Congrats, you are subscribed!")
|
| 16 |
st.write("the email of the user is " + str(st.session_state.email))
|