Skip to content

Commit 0b23c98

Browse files
committed
Create Personalize apps for users.md
1 parent 41b514f commit 0b23c98

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

Personalize apps for users.md

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Show different content based on the user's email address.
2+
if st.user.email == '[email protected]':
3+
display_jane_content()
4+
elif st.user.email == '[email protected]':
5+
display_adam_content()
6+
else:
7+
st.write("Please contact us to get access!")

0 commit comments

Comments
 (0)