Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -49,32 +49,12 @@ st.markdown(
|
|
49 |
# Centered title
|
50 |
#st.markdown('<div class="title-container"><h1>AI Title Generator</h1></div>', unsafe_allow_html=True)
|
51 |
|
52 |
-
# Input bar for user prompt
|
53 |
-
st.markdown(
|
54 |
-
"""
|
55 |
-
<style>
|
56 |
-
.text-area-container {
|
57 |
-
text-align: center;
|
58 |
-
}
|
59 |
-
.text-area-container label {
|
60 |
-
font-weight: bold;
|
61 |
-
font-size: 16px;
|
62 |
-
margin-bottom: 10px;
|
63 |
-
display: block;
|
64 |
-
}
|
65 |
-
</style>
|
66 |
-
""",
|
67 |
-
unsafe_allow_html=True
|
68 |
-
)
|
69 |
|
70 |
-
#
|
71 |
-
st.markdown('<div class="text-area-container">', unsafe_allow_html=True)
|
72 |
user_input = st.text_area(
|
73 |
-
label="
|
74 |
-
placeholder="
|
75 |
)
|
76 |
-
st.markdown('</div>', unsafe_allow_html=True)
|
77 |
-
|
78 |
|
79 |
|
80 |
if st.button("Generate", use_container_width=True):
|
|
|
49 |
# Centered title
|
50 |
#st.markdown('<div class="title-container"><h1>AI Title Generator</h1></div>', unsafe_allow_html=True)
|
51 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
52 |
|
53 |
+
# Input bar for user prompt
|
|
|
54 |
user_input = st.text_area(
|
55 |
+
label="Your Text Goes Here:",
|
56 |
+
placeholder="Type or Paste Your Input..."
|
57 |
)
|
|
|
|
|
58 |
|
59 |
|
60 |
if st.button("Generate", use_container_width=True):
|