mrbeliever commited on
Commit
4ec3e61
·
verified ·
1 Parent(s): 8b3d40e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -23
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
- # Text Area with Centered Label
71
- st.markdown('<div class="text-area-container">', unsafe_allow_html=True)
72
  user_input = st.text_area(
73
- label="Enter your text here:",
74
- placeholder="e.g., Master AI For Future Jobs"
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):