Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -28,7 +28,28 @@ async def main():
|
|
28 |
page_icon="🎓",
|
29 |
layout="wide",
|
30 |
initial_sidebar_state="auto")
|
31 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
32 |
st.markdown("""
|
33 |
<div style='text-align: center;'>
|
34 |
<h1>Konferensiya ishtirokchilari uchun sertifikat tayyorlash sahifasi</h1>
|
|
|
28 |
page_icon="🎓",
|
29 |
layout="wide",
|
30 |
initial_sidebar_state="auto")
|
31 |
+
st.sidebar.title('Conferences')
|
32 |
+
st.sidebar.image('image.png')
|
33 |
+
with open("O'zMU_JF_to'plam_17_18_may_2024_1_qism.pdf", "rb") as file:
|
34 |
+
btn = st.sidebar.download_button(
|
35 |
+
label="Download conferences files Part 1",
|
36 |
+
data=file,
|
37 |
+
file_name="conferences_files part1.pdf",
|
38 |
+
mime="pdf",
|
39 |
+
type='primary',
|
40 |
+
use_container_width=True
|
41 |
+
)
|
42 |
+
with open("O'zMU_JF_to'plam_17_18_may_2024_2_qism.pdf", "rb") as file:
|
43 |
+
btn = st.sidebar.download_button(
|
44 |
+
label="Download conferences files Part 2",
|
45 |
+
data=file,
|
46 |
+
file_name="conferences_files part2.pdf",
|
47 |
+
mime="pdf",
|
48 |
+
type='primary',
|
49 |
+
use_container_width=True
|
50 |
+
)
|
51 |
+
st.sidebar.link_button("📧 About me", url='https://t.me/shohabbosdev', type='secondary')
|
52 |
+
|
53 |
st.markdown("""
|
54 |
<div style='text-align: center;'>
|
55 |
<h1>Konferensiya ishtirokchilari uchun sertifikat tayyorlash sahifasi</h1>
|