Skip to content

Commit

Permalink
Add user's feedback component in sidebar
Browse files Browse the repository at this point in the history
  • Loading branch information
paty-oliveira committed Sep 26, 2024
1 parent 29e3108 commit ca3d1bc
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions src/ui/sidebar.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,14 @@ def render():
st.title("Dashboard :bar_chart:")
st.text_input("Enter a stock ticker:", key="ticker", type="default")
button(username="devpatrici0", floating=True)

with st.container():
st.write("### We would love your feedback!")
st.text_input("Name:", key="username", type="default")
st.text_input("Email:", key="user_email", type="default")
# user_feedback = st.text_area(
# "Please provide your suggestions or feedback here:",
# key="feedback",
# )
# app_rating = st.feedback("stars")
st.button("Submit", type="primary", use_container_width=True)

0 comments on commit ca3d1bc

Please sign in to comment.