Skip to content

Commit

Permalink
all done
Browse files Browse the repository at this point in the history
  • Loading branch information
aakashmohole committed Jun 1, 2024
1 parent 42da18b commit bca87c4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 24 deletions.
25 changes: 2 additions & 23 deletions app.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
utils.stroke.main()
else:
## Tabes
home, about, contact, deployment = st.tabs(["Home", "About Us", "Contact Us", "Deployment"])
home, about, deployment = st.tabs(["Home", "About Us", "Deployment"])

with home:
badge(type="twitter", name="aakashmohole")
Expand Down Expand Up @@ -125,25 +125,4 @@
Together, we can navigate the dynamic landscape of data science and collectively shape a future driven by data-driven insights.
""")

with contact:
st.title("Contact Me!")
st.write("Have questions or feedback? Fill out the form below and we'll get back to you as soon as possible.")

# Create form fields
name = st.text_input("Name")
email = st.text_input("Email")
message = st.text_area("Message")

# Submit button
if st.button("Submit"):
# Perform validation
if not name:
st.error("Please enter your name.")
elif not email:
st.error("Please enter your email.")
elif not message:
st.error("Please enter your message.")
else:
# Send the message (you can implement the sending logic here)
st.success("Your message has been sent successfully. We'll get back to you soon.")


4 changes: 3 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
streamlit
pickle
scikit-learn
scikit-learn
streamlit_extras
streamlit_option_menu

0 comments on commit bca87c4

Please sign in to comment.