Spaces:
Sleeping
Sleeping
rafaldembski
commited on
Commit
•
bb7d797
1
Parent(s):
128b0c3
Create pages/Contact.py
Browse files- pages/Contact.py +27 -0
pages/Contact.py
ADDED
@@ -0,0 +1,27 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import streamlit as st
|
2 |
+
|
3 |
+
def main():
|
4 |
+
st.title("💬 Kontakt")
|
5 |
+
st.write("Masz pytania lub sugestie dotyczące naszej aplikacji? Skontaktuj się z nami poniżej!")
|
6 |
+
|
7 |
+
with st.form("contact_form"):
|
8 |
+
name = st.text_input("Imię i Nazwisko")
|
9 |
+
email = st.text_input("Adres Email")
|
10 |
+
message = st.text_area("Wiadomość", height=150)
|
11 |
+
submitted = st.form_submit_button("Wyślij")
|
12 |
+
|
13 |
+
if submitted:
|
14 |
+
if not name.strip():
|
15 |
+
st.error("Proszę podać swoje imię i nazwisko.")
|
16 |
+
elif not email.strip():
|
17 |
+
st.error("Proszę podać swój adres email.")
|
18 |
+
elif not message.strip():
|
19 |
+
st.error("Proszę wprowadzić wiadomość.")
|
20 |
+
else:
|
21 |
+
# Tutaj dodaj logikę wysyłania wiadomości, np. do zewnętrznego API
|
22 |
+
# Na razie wyświetlimy potwierdzenie
|
23 |
+
st.success("Dziękujemy za wiadomość! Skontaktujemy się z Tobą wkrótce.")
|
24 |
+
|
25 |
+
if __name__ == "__main__":
|
26 |
+
main()
|
27 |
+
|