We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 41b514f commit 0b23c98Copy full SHA for 0b23c98
Personalize apps for users.md
@@ -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