Munir1234 commited on
Commit
97d746f
·
verified ·
1 Parent(s): 670ca0c

Upload app2.py

Browse files
Files changed (1) hide show
  1. data/app2.py +101 -0
data/app2.py ADDED
@@ -0,0 +1,101 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import streamlit as st
2
+
3
+ # Custom CSS to enhance the UI
4
+ st.markdown(
5
+ """
6
+ <style>
7
+ .title {
8
+ font-size: 40px;
9
+ color: #4CAF50;
10
+ text-align: center;
11
+ margin-bottom: 20px;
12
+ }
13
+ .header {
14
+ font-size: 30px;
15
+ color: #FF5722;
16
+ margin-bottom: 20px;
17
+ }
18
+ .sidebar-title {
19
+ color: #673AB7;
20
+ font-size: 24px;
21
+ }
22
+ .container {
23
+ background-color: #E3F2FD;
24
+ padding: 20px;
25
+ border-radius: 10px;
26
+ box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
27
+ }
28
+ .button {
29
+ background-color: #FF5722;
30
+ color: white;
31
+ border: none;
32
+ padding: 10px 20px;
33
+ border-radius: 5px;
34
+ cursor: pointer;
35
+ font-weight: bold;
36
+ }
37
+ .button:hover {
38
+ background-color: #E64A19;
39
+ }
40
+ .sidebar {
41
+ background-color: #F3E5F5;
42
+ padding: 10px;
43
+ border-radius: 10px;
44
+ }
45
+ </style>
46
+ """,
47
+ unsafe_allow_html=True
48
+ )
49
+
50
+ st.image("https://via.placeholder.com/300", width=300, caption="Munir Bhai")
51
+
52
+ # Add title and header with custom styles
53
+ st.markdown("<div class='title'>Hi! Munir Bhai...</div>", unsafe_allow_html=True)
54
+ st.markdown("<div class='header'>Welcome to the Interactive Form</div>", unsafe_allow_html=True)
55
+
56
+ st.video("https://www.youtube.com/watch?v=gK03De6nb1Y")
57
+
58
+ # Form container
59
+ st.markdown("<div class='container'>", unsafe_allow_html=True)
60
+
61
+ # Text input
62
+ name = st.text_input("Enter your name")
63
+
64
+ # Number input
65
+ age = st.number_input("Enter your age", min_value=0, max_value=120, step=1)
66
+
67
+ # Radio button for gender selection
68
+ gender = st.radio("Enter your gender", ["Male", "Female"], horizontal=True)
69
+
70
+ # Select box for city
71
+ city = st.selectbox("Enter your city", ["None", "Delhi", "Mumbai", "Kolkata", "Chennai"])
72
+
73
+ # Select box for qualification
74
+ qualification = st.selectbox(
75
+ "Enter your qualification", ["None", "B.Tech", "M.Tech", "PhD"]
76
+ )
77
+
78
+ # Submit button
79
+ if st.button("Submit", key="submit-button"):
80
+ st.markdown(f"<div class='header'>Hi, {name} Bhai!</div>", unsafe_allow_html=True)
81
+ st.write(f"Your age is {age} years old.")
82
+ st.write(f"Your gender is {gender}.")
83
+ if city != "None":
84
+ st.write(f"You live in {city}.")
85
+ if qualification != "None":
86
+ st.balloons()
87
+ st.write(f"Your qualification is {qualification}.")
88
+
89
+ # Close container
90
+ st.markdown("</div>", unsafe_allow_html=True)
91
+
92
+ # Sidebar content
93
+ st.sidebar.markdown(
94
+ """
95
+ <div class='sidebar'>
96
+ <div class='sidebar-title'>Hi {name} Bhai...</div>
97
+ <div class='sidebar-title'>Kaise ho Bhai?</div>
98
+ </div>
99
+ """,
100
+ unsafe_allow_html=True
101
+ )