Spaces:
Runtime error
Runtime error
Update Home.py
Browse files
Home.py
CHANGED
@@ -1,5 +1,6 @@
|
|
1 |
import requests
|
2 |
import streamlit as st
|
|
|
3 |
from streamlit_lottie import st_lottie
|
4 |
|
5 |
st.set_page_config('Home',":shark:","wide",menu_items={'About': "This is an *extremely* cool app!"})
|
@@ -34,3 +35,15 @@ with st.container():
|
|
34 |
|
35 |
|
36 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
import requests
|
2 |
import streamlit as st
|
3 |
+
import streamlit.components.v1 as components
|
4 |
from streamlit_lottie import st_lottie
|
5 |
|
6 |
st.set_page_config('Home',":shark:","wide",menu_items={'About': "This is an *extremely* cool app!"})
|
|
|
35 |
|
36 |
|
37 |
|
38 |
+
with st.container():
|
39 |
+
st.write('---')
|
40 |
+
st.title('Contact me')
|
41 |
+
components.html("""
|
42 |
+
<form action="https://formsubmit.co/vazirij@yahoo.com" method="POST">
|
43 |
+
<input type="hidden" name="_captcha" value="false">
|
44 |
+
<input type="text" name="name" required placeholder="Your name">
|
45 |
+
<input type="email" name="email" required placeholder="Your email">
|
46 |
+
<textarea name="message" placeholder="Your message here" required></textarea>
|
47 |
+
<button type="submit">Send</button>
|
48 |
+
</form>
|
49 |
+
""")
|